小さなアプリを作成しましたが、エミュレーターで実行すると完璧に動作します。
しかし、デバイスにインストールして起動すると、空白/黒い画面が表示され、メッセージが表示されてクラッシュしますThe Application TOH(process my.own) has stopped unexpectedly
。
何が間違っているのかわからない..
お知らせ下さい..
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.own"
android:versionCode="2"
android:versionName="2.3.4" >
<uses-sdk android:minSdkVersion="10" />
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
<application
android:icon="@drawable/background2"
android:label="@string/app_name" >
<activity
android:name=".TOH"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Startgame"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".scoretell"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".details"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".ShowPopUp"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>