1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.dreams.bummer" 4 android:versionCode="1" 5 android:versionName="1.0"> 6 7 <application android:label="Bummer"> 8 <service 9 android:name=".Bummer" 10 android:exported="true" 11 android:label="Bummer"> 12 <intent-filter> 13 <action android:name="android.service.dreams.DreamService" /> 14 <category android:name="android.intent.category.DEFAULT" /> 15 </intent-filter> 16 </service> 17 </application> 18 </manifest> 19