Android docsAndroid Google Play Services
から統合しようとしています。すべての手順が機能し、エラーなしでコンパイルされます。スプラッシュ画面での実行時に、以下のエラーが発生します。
05-30 21:08:36.115: E/AndroidRuntime(7137): FATAL EXCEPTION: Thread-153
05-30 21:08:36.115: E/AndroidRuntime(7137): java.lang.NoClassDefFoundError: matt.lyons.bibletrivia.lite.MainMenu
05-30 21:08:36.115: E/AndroidRuntime(7137): at matt.lyons.bibletrivia.lite.SplashScreen$IntentLauncher.run(SplashScreen.java:46)
以下は「SplashScreen.java:46」へのコードです。
Intent intent = new Intent(SplashScreen.this, MainMenu.class); //Line 46
startActivity(intent);
私はちょうど私の開始行をこれから変更しましたMainMenu
:
public class MainMenu extends Activity {
これに:
public class MainMenu extends BaseGameActivity {
そして今、ClassNotFoundException を取得しています。このエラーが表示されるのはなぜですか? MainMenu
クラスは確かにあります。リクエストに応じて、追加のコードを提供できます。
Android マニフェスト
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="matt.lyons.bibletrivia.lite"
android:versionCode="5"
android:versionName="1.2.1" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/icon_blue_bg"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".SplashScreen"
android:screenOrientation="portrait" >
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
<activity
android:label="@string/app_name"
android:name=".About"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".Categories"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".Question"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".Quiz"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".QuestionView"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".Results"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".Highscores"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".DatabaseHelper"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".ComingSoon"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".MainMenu"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".MyApplication"
android:screenOrientation="portrait" />
<activity
android:label="@string/app_name"
android:name=".BibleStudy"
android:screenOrientation="portrait" />
</application>
<uses-permission
android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission
android:name="com.android.vending.BILLING" />
</manifest>