カテゴリー:
エラー
閲覧数:592 配信日:2013-08-02 10:24
エラーメッセージ
Sorry! The application HelloAndroid(process andtoid.style) has stopped unexpectedly.Please try again.
対象ファイル
▼/AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android4.style"
原因例2
・「AndroidManifest.xml」で存在しないパッケージ名を指定したことによるエラー(JavaやXMLの文法的には間違っていない)
・リファクタリングより、パッケージ名変更を実施した際などのミスにより発生
対応例2
・正しいパッケージ名を指定
▼/AndroidManifest.xml
・修正前
<span class="brush: xml; collapse: true;"><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android4.style"
</span>
・修正後
<span class="brush: xml; collapse: true;"><manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.style"
</span>