Blackberry Android Launch不起作用

时间:2012-11-14 05:18:08

标签: android eclipse adt blackberry-eclipse-plugin blackberry-android

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

2 个答案:

答案 0 :(得分:4)

BlackBerry Plug-in 1.3 Beta与ADT(Android开发工具)版本21不兼容。我在Windows 7和Mac OS 10.7.5上也遇到过此错误。

一小时后我终于找到了解决方案(解决方法):

  1. 从Eclipse
  2. 卸载ADT和BlackBerry插件
  3. here
  4. 手动下载ADT 20
  5. 从下载的存档中安装ADT作为Eclipse插件
  6. 安装BlackBerry插件1.3 Beta
  7. 请注意,我还在personal site

    上发布了详细解决方案

答案 1 :(得分:2)

您是否为eclipse安装了测试版的BB插件?请参阅此link了解更多信息。