これが私のマニフェストです:
<application
android:allowBackup="true"
android:icon="@drawable/toto"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:process=":app_process">
<activity
android:name=".core.Main"
android:label="app_label"
android:launchMode="singleTask"
android:alwaysRetainTaskState="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.nfc.action.TECH_DISCOVERED" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data
android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
</activity>
<service android:name=".core.MessengerService"
android:enabled="true"
android:process=":app_process">
<intent-filter>
<action android:name="My_Messenger_Service"/>
</intent-filter>
</service>
<receiver
android:name=".core.BootReceiver"
android:enabled="true"
android:label="StartMyServiceAtBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
携帯電話を再起動するとランチャーが壊れてしまい、Android のデフォルト ランチャーと私のランチャーを含むデフォルトのランチャーを選択するように求められます。
コマンドラインを使用してlogcatを取得しようとしました:
adb logcat -d > logcat.txt
しかし、ランチャーのエラー ログ E/ は見つかりませんでした。このエラーを追跡するにはどうすればよいですか?
誰かが私を助けてくれますか?ありがとう、