-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
48 lines (45 loc) · 2.17 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
48 lines (45 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.balau.fakedawn"
android:versionCode="4"
android:versionName="1.3" >
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<supports-screens android:xlargeScreens="true" android:largeScreens="true"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity android:name="Preferences" android:taskAffinity="@string/affinity_preferences">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<service android:name="Alarm"></service>
<activity android:name="Dawn" android:taskAffinity="@string/affinity_dawn" android:screenOrientation="fullSensor"></activity>
<receiver android:name="StartAtBoot">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name="DawnSound"></service>
<activity android:name="License"></activity>
<receiver android:name="AlarmReceiver">
<intent-filter>
<action android:name="org.balau.fakedawn.AlarmReceiver.ACTION_START_ALARM"/>
</intent-filter>
<intent-filter>
<action android:name="org.balau.fakedawn.AlarmReceiver.ACTION_STOP_ALARM"/>
</intent-filter>
</receiver>
<receiver android:name="InstallationReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<data android:scheme="package"/>
</intent-filter>
</receiver>
</application>
</manifest>