我正在尝试在我的Blackberry Playbook上调试移植的Android应用程序,但每当我尝试将其作为Blackberry Android Launch
启动时,它就会出现此错误:
An internal error occurred during: "Launching The Dot Game Playbook".
com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper.parseForData(Lorg/eclipse/core/resources/IProject;)Lcom/android/sdklib/xml/ManifestData;
我无法弄清楚导致此错误的原因。该应用程序在Android模拟器中运行良好,但不适用于黑莓工具。我已经尝试清理项目,更新android SDK,重新启动Eclipse,并重新安装Blackberry插件,但没有任何工作。有什么想法吗?
编辑:这是我的AndroidManifest.xml:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.g33kworld.thedotgame"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" android:allowBackup="true">
<activity
android:name="net.g33kworld.thedotgame.DotGame"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:4)
BlackBerry Plug-in 1.3 Beta与ADT(Android开发工具)版本21不兼容。我在Windows 7和Mac OS 10.7.5上也遇到过此错误。
一小时后我终于找到了解决方案(解决方法):
请注意,我还在personal site
上发布了详细解决方案答案 1 :(得分:2)
您是否为eclipse安装了测试版的BB插件?请参阅此link了解更多信息。