DroidGap无法解决编译错误

时间:2014-04-14 16:12:50

标签: android

我正在尝试使用PhoneGap和Android做一个小的HelloWorld应用程序? 我已下载phonegap-2.9.1并将cordova.2.9.0.jar复制到libs文件夹

我在导入时遇到编译错误org.apache.cordova.DroidGap无法解析

package com.example.helloworld;


import org.apache.cordova.DroidGap;
    public class MainActivity extends DroidGap {


    }

编译错误DroidGap无法解析

这是编译错误的屏幕截图

enter image description here

请有人帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

您是否已将jar添加到构建路径中?

右键点击你的jar,转到Build Path - > Configure Build Path...

Libraries标签中,点击Add JARs...并选择您的广告。

然后,在Order and Export标签中,确保检查您的jar。

就是这样 - 现在应该可以了!

以下是类似问题的另一个主题:DroidGap cannot be resolved into a type