-1

我更新到最新版本的 ADT Bundle,现在我无法运行包含我的广告网络 jar 文件的任何应用程序。

Failed resolving Lcom/nezero/testapp; interface 33 'Lcom/adsdk/sdk/AdListener;'

然后应用程序炸弹

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

是的,在您问之前,我的清单文件中已完整描述了该活动,此构建在更新到最新版本的 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>

这非常令人沮丧,我有一个需要尽快修复错误的应用程序,我什至无法获得一个工作副本来调试!

4

1 回答 1

0

经过大量搜索,我发现Java Build Path中的一个问题,Android Private Libraries没有被检查!

检查 Android 私有库

完成此操作后,我所有的应用程序都重新开始工作了!

一个恼人的错误!

于 2013-07-05T08:16:00.093 回答