OSDN Git Service

Remove superfluous icon.
[android-x86/packages-apps-DeskClock.git] / AndroidManifest.xml
1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2         package="com.android.alarmclock">
3
4     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
5     <uses-permission android:name="android.permission.WAKE_LOCK"/>
6     <uses-permission android:name="android.permission.VIBRATE"/>
7     <uses-permission android:name="android.permission.WRITE_SETTINGS" />
8     <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
9     <uses-permission android:name="android.permission.READ_PHONE_STATE" />
10
11     <application android:label="@string/app_label"
12                  android:icon="@drawable/ic_launcher_alarmclock">
13
14         <provider android:name="AlarmProvider" android:authorities="com.android.alarmclock" />
15
16         <activity android:name="AlarmClock" android:label="@string/app_label"
17                 android:configChanges="orientation|keyboardHidden|keyboard|navigation">
18             <intent-filter>
19                 <action android:name="android.intent.action.MAIN" />
20                 <category android:name="android.intent.category.DEFAULT" />
21                 <category android:name="android.intent.category.LAUNCHER" />
22             </intent-filter>
23         </activity>
24
25         <activity android:name="SettingsActivity" android:label="@string/settings">
26             <intent-filter>
27                 <action android:name="android.intent.action.MAIN" />
28             </intent-filter>
29         </activity>
30
31         <activity android:name="SetAlarm" android:label="@string/set_alarm"
32                 android:configChanges="orientation|keyboardHidden|keyboard|navigation" />
33
34         <activity android:name="AlarmAlert"
35                 android:excludeFromRecents="true"
36                 android:theme="@style/alarm_alert"
37                 android:launchMode="singleInstance"
38                 android:taskAffinity=""
39                 android:configChanges="orientation|keyboardHidden|keyboard|navigation"/>
40
41         <!-- This activity is basically the same as AlarmAlert but with a more
42              generic theme. It also shows as full screen (with status bar) but
43              with the wallpaper background. -->
44         <activity android:name="AlarmAlertFullScreen"
45                 android:excludeFromRecents="true"
46                 android:theme="@android:style/Theme.Wallpaper.NoTitleBar"
47                 android:launchMode="singleInstance"
48                 android:taskAffinity=""
49                 android:configChanges="orientation|keyboardHidden|keyboard|navigation"/>
50
51         <activity android:name="ClockPicker" />
52
53         <receiver android:name="AlarmReceiver">
54             <intent-filter>
55                <action android:name="com.android.alarmclock.ALARM_ALERT" />
56                <action android:name="alarm_killed" />
57                <action android:name="cancel_snooze" />
58             </intent-filter>
59         </receiver>
60
61         <!-- This service receives the same intent as AlarmReceiver but it does
62              not respond to the same broadcast. The AlarmReceiver will receive
63              the alert broadcast and will start this service with the same
64              intent. The service plays the alarm alert and vibrates the device.
65              This allows the alert to continue playing even if another activity
66              causes the AlarmAlert activity to pause. -->
67         <service android:name="AlarmKlaxon">
68             <intent-filter>
69                 <action android:name="com.android.alarmclock.ALARM_ALERT" />
70             </intent-filter>
71         </service>
72
73         <receiver android:name="AlarmInitReceiver">
74             <intent-filter>
75                 <action android:name="android.intent.action.BOOT_COMPLETED" />
76                 <action android:name="android.intent.action.TIME_SET" />
77                 <action android:name="android.intent.action.TIMEZONE_CHANGED" />
78             </intent-filter>
79         </receiver>
80
81         <receiver android:name="AnalogAppWidgetProvider" android:label="@string/analog_gadget">
82             <intent-filter>
83                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
84             </intent-filter>
85             <meta-data android:name="android.appwidget.provider" android:resource="@xml/analog_appwidget" />
86         </receiver>
87     </application>
88 </manifest>
89