I'm trying to debug a ported android application on my Blackberry Playbook, but it gives me this error whenever I try to launch it as a 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;
I can't figure out what's causing this error. The app runs fine in the android emulator, but won't work with the blackberry tools. I've tried cleaning the project, updating the android SDK, restarting Eclipse, and reinstalling the Blackberry plugins, but nothing's worked. Any ideas?
EDIT: Here's my 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>