Android - 启动器应用程序在重启后中断 phone
Android - Launcher Application breaks after reboot phone
这是我的清单:
<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>
我的启动器在重启后损坏 phone,然后 phone 要求我选择默认启动器,其中包含 Android 默认启动器和我的启动器。
我尝试使用命令行获取 logcat:
adb logcat -d > logcat.txt
但是我没有找到启动器的任何错误日志 E/。我如何追踪这个错误?
有人可以帮助我吗?谢谢,
我添加了这个参数并且有效
android:clearTaskOnLaunch="true"
这是我的清单:
<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>
我的启动器在重启后损坏 phone,然后 phone 要求我选择默认启动器,其中包含 Android 默认启动器和我的启动器。
我尝试使用命令行获取 logcat:
adb logcat -d > logcat.txt
但是我没有找到启动器的任何错误日志 E/。我如何追踪这个错误?
有人可以帮助我吗?谢谢,
我添加了这个参数并且有效
android:clearTaskOnLaunch="true"