我一直在尝试创建一个没有Activity的应用服务,但我遇到了一些问题。
我希望服务从启动运行,因此自然地使用BroadcastReciever
来捕获ACTION_BOOT_COMPLETED
这在测试时没有问题。我使用一个Activity来启动和停止服务以测试它是否正常工作然后重新启动以查看启动接收器是否工作,它确实是,快乐的日子。
从应用程序中删除了测试Activity并使用了以下清单。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.package"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- <activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity> -->
<receiver android:name=".BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:name=".SWKeepAliveService" />
</application>
</manifest>
卸载然后重新安装应用程序,重启设备并没有。用adb shell am broadcast -a android.intent.action.BOOT_COMPLETED
测试了几次,仍然没有。
经过一些试验和错误后,我发现如果应用程序从未运行过,广播接收器永远不会收到ACTION_BOOT_COMPLETED
。当然没有发射器,它永远不会运行。
我错过了什么吗?我在文档中没有看到任何提及。
编辑1
使用我的AOSP构建进行一些测试,上面的清单在Gingerbread上很好,但不在Jelly Bean上。有些事情必须改变,我只能假设出于安全原因(可以理解)。虽然我没有看到任何支持这一事实的文件。
答案 0 :(得分:2)
我错过了什么吗?
是
我在文档中没有看到任何提及。
在the Android 3.1 release documentation,blog posts by balding guys中提到了这一点,而StackOverflow上的infinite数量似乎answers。