I updated to a the latest version of ADT Bundle and now i can't run any of my apps that include my ad network jar file.
Failed resolving Lcom/nezero/testapp; interface 33 'Lcom/adsdk/sdk/AdListener;'
Then the app bombs with
D/AndroidRuntime(29555): Shutting down VM
W/dalvikvm(29555): threadid=1: thread exiting with uncaught exception (group=0x40dc4930)
E/AndroidRuntime(29555): FATAL EXCEPTION: main
E/AndroidRuntime(29555): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.nezero.testapp/com.nezero.testapp.TestActivity}: java.lang.ClassNotFoundException: Didn't find class "com.nezero.testapp.TestActivity" on path: /data/app/com.nezero.testapp-1.apk
And yes, before you ask, the activity is fully described in my Manifest file, this build worked before updating to the latest version of ADT.
<activity
android:name="com.nezero.testapp.TestActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
This is very frustrating, I've got an app with a bug that needs fixing ASAP and I can't even get a working copy to debug!