この質問がサイトで多く寄せられていることは承知していますが、解決策が見つからないようです。アプリケーションが実行されていないとき、私の BOOT_COMPLETED レシーバーは呼び出されません。
マニフェスト:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.startuptest"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="internalOnly">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.startuptest.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.example.startuptest.StartUpBootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
スタートアップ ブートレシーバー:
public class StartUpBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d("startuptest", "StartUpBootReceiver " + intent.getAction());
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
Log.d("startuptest", "StartUpBootReceiver BOOT_COMPLETED");
}
}
}
アプリケーションが実行されていて、呼び出しをシミュレートする場合
adb shell
am broadcast -a android.intent.action.BOOT_COMPLETED
イベントは正しく受信されますが、アプリケーションが閉じられている場合、イベントは受信されず、起動時にも受信されません。
アプリケーションをインストールしてから、数回起動して、登録されていることを確認しました。私はこれについてかなり迷っているので、アドバイスをいただければ幸いです。
編集:ログで、他のすべての閉じられたアプリケーション (Youtube、FileObserver など) が boot_completed イベントを受け取っていることがわかります。