8.2.2.更新Manifest文件
我们的 Service 已经有了个样子,接下来就跟对待其它构件一样在 Manifest 文件中注册它,不然就是无法使用的。打开 AndroidManifest.xml ,单击最右边的 tab 查看 XML 源码,把如下代码加入<application>节点:
...
<application android:icon="@drawable/icon" android:label="@string/app_name">
...
<service android:name=".UpdaterService" /> <!-- -->
...
</application>
...
同为 Android 的基本构件 ,Service 与 Activity 是平等的。因此在 Manifest 文件中,它们处于同一级别。