2014-04-14 89 views
0

我正在嘗試使用PhoneGap和Android做一個小HelloWorld應用程序? 我已經下載的PhoneGap-2.9.1和複製cordova.2.9.0.jar到libs文件夾DroidGap無法解析編譯錯誤

我在導入org.apache.cordova.DroidGap獲得編譯錯誤不能得到解決

package com.example.helloworld; 


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


    } 

編譯錯誤DroidGap無法解決

這是編譯錯誤

enter image description here

的屏幕截圖

有沒有人可以幫我解決這個問題。

回答

0

您是否將jar添加到您的構建路徑中?

右鍵點擊你的罐子,去Build Path - >Configure Build Path...

Libraries選項卡,單擊Add JARs...並選擇您的罐子。

然後,在Order and Export選項卡中,確保您的jar被選中。

就是這樣 - 它現在應該可以工作!

這是另一個類似問題的線索:DroidGap cannot be resolved into a type

相關問題