1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.example.notificationshowcase" 4 android:versionCode="1" 5 android:versionName="1.0"> 6 <uses-sdk android:minSdkVersion="4" 7 android:targetSdkVersion="16" /> 8 9 <application android:icon="@drawable/icon" android:label="@string/app_name"> 10 <activity android:name=".NotificationShowcaseActivity" 11 android:label="@string/app_name"> 12 <intent-filter> 13 <action android:name="android.intent.action.MAIN" /> 14 <category android:name="android.intent.category.LAUNCHER" /> 15 </intent-filter> 16 </activity> 17 <service android:name=".NotificationService"/> 18 <service android:name=".UpdateService"/> 19 <service android:name=".ProgressService"/> 20 <service android:name=".ToastService"/> 21 </application> 22 </manifest> 23