我只是在配置我的 phonegap 应用程序并设置为运行“HelloWorld”问题。但我无法正确执行它,因为它总是抛出以下错误。
Cannot reduce the visibility of the inherited method from DroidGap
The import com.phonegap cannot be resolve
这是我在 MainActivity.java 中的代码
package com.example.mobile;
import org.apache.cordova.DroidGap;
import android.os.Bundle;
import android.view.Menu;
import com.phonegap.*;
public class MainActivity extends DroidGap {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
我创建了 libs 文件夹并添加了 cordova-2.2.0.jar ,并添加到了 bulid 路径。但是我仍然无法弄清楚问题所在,请建议我解决它。
谢谢