Android phonegap hello world停止应用程序启动

时间:2012-07-31 09:46:27

标签: android cordova

这是一个简单的你好世界。 但我无法运行它。
当我试图跑,然后它显示:
“对不起!应用程序意外停止了!请再试一次。”
它引发了一个例外。我在这里附上了例外:

enter image description he<code>enter code here</code>re

// ==========代码==========

package com.ismail.phonegap;
import android.app.Activity;
import android.os.Bundle;
import org.apache.cordova.*;
public class HomePage extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);      
super.loadUrl("file:///android_asset/www/index.html");
}
}

1 个答案:

答案 0 :(得分:0)

请检查您是否将phonegap jar文件放在libs文件夹中,并检查是否将plugin.xml文件放在res文件夹中。

相关问题