Android スクリーンセーバー アプリケーションの作業中に ClassNotFoundException が発生し、アプリケーションが予期せず停止しました。
logcat には次のエラー ログがありました -
08-24 07:53:36.973: E/AndroidRuntime(14984): Caused by:java.lang.ClassNotFoundException: Didn't find class "com.example.actualscsaver.MainDayDream" on path: DexPathList[[zip file "/data/app/com.example.actualscsaver-2.apk"],nativeLibraryDirectories=[/data/app-lib/com.example.actualscsaver-2, /system/lib]]
08-24 07:53:36.973: E/AndroidRuntime(14984): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:53)
そして、ここに私のマニフェストファイルがあります-
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.actualscsaver"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service
android:name=".MainDayDream"
android:exported="true"
android:label="Image Slide DayDream">
<intent-filter>
<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
<activity
android:name="com.example.actualscsaver.MainDayDream"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MainDayDream" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.example.actualscsaver.photoDbAdapter"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.photoDbAdapter" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.example.actualscsaver.photoDbHelper"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.photoDbHelper" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.example.actualscsaver.Utilities"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.Utilities" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
他のフォーラムを検索したり、オンラインで記事を読んだりしましたが、この問題の解決策を見つけることができませんでした。私の検索によると、Eclipseとエミュレーターの再起動、SDKの更新、必要なライブラリの確認などの解決策がいくつか見つかりましたが、何もうまくいきませんでした。どこで間違えたのか教えてもらえますか?この例外の他の理由はありますか?
前もって感謝します。