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="7"
      7               android:targetSdkVersion="21" />
      8 
      9     <uses-permission android:name="android.permission.READ_CONTACTS" />
     10     <uses-permission android:name="android.permission.WAKE_LOCK" />
     11 
     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                   android:showForAllUsers="true">
     23             <intent-filter>
     24                 <action android:name="android.intent.action.MAIN" />
     25             </intent-filter>
     26         </activity>
     27         <activity android:name="SettingsActivity"
     28                   android:label="@string/app_name">
     29             <intent-filter>
     30                 <action android:name="android.intent.action.MAIN" />
     31                 <category android:name="android.intent.category.DEFAULT" />
     32                 <category android:name="android.intent.category.NOTIFICATION_PREFERENCES" />
     33             </intent-filter>
     34         </activity>
     35 
     36         <service  android:name=".NotificationService"/>
     37         <service  android:name=".UpdateService"/>
     38         <service  android:name=".ProgressService"/>
     39         <service  android:name=".PhoneService"/>
     40         <service  android:name=".ToastService"/>
     41     </application>
     42 </manifest>
     43