インテントフィルター ACTION_PACKAGE_FIRST_LAUNCH を使用して、アプリケーションが最初に起動したときにいくつかのタスクを実行しようとしていますが、ブロードキャストレシーバーによってキャプチャされていません私のマニフェスト
<receiver android:name=".reminder.ReminderActionReceiver" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_FIRST_LAUNCH" />
<action android:name="android.intent.action.PACKAGE_DATA_CLEARED" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
これは私の放送受信機の実装です
this.context = context;
String mAction = intent.getAction();
Log.i("r", mAction);
if (mAction == Intent.ACTION_PACKAGE_DATA_CLEARED) {
} else if (mAction == Intent.ACTION_PACKAGE_FIRST_LAUNCH) {
}
アプリが最初に起動したときに開始するにはどうすればよいですか?