我正在尝试在我的 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>