Home | History | Annotate | Download | only in NotificationShowcase
      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     <uses-permission android:name="android.permission.READ_CONTACTS">
     10 
     11     </uses-permission>
     12     <application android:icon="@drawable/icon" android:label="@string/app_name">
     13         <activity android:name=".NotificationShowcaseActivity"
     14                   android:label="@string/app_name">
     15             <intent-filter>
     16                 <action android:name="android.intent.action.MAIN" />
     17                 <category android:name="android.intent.category.LAUNCHER" />
     18             </intent-filter>
     19         </activity>
     20         <activity android:name=".FullScreenActivity"
     21                   android:label="@string/full_screen_name">
     22             <intent-filter>
     23                 <action android:name="android.intent.action.MAIN" />
     24             </intent-filter>
     25         </activity>
     26         <service  android:name=".NotificationService"/>
     27         <service  android:name=".UpdateService"/>
     28         <service  android:name=".ProgressService"/>
     29         <service  android:name=".PhoneService"/>
     30         <service  android:name=".ToastService"/>
     31     </application>
     32 </manifest>
     33