-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
71 lines (61 loc) · 2.95 KB
/
AndroidManifest.xml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.youdao.nanti.candy.yirisanxing"
android:versionCode="1"
android:versionName="1.0" >
<!-- android:installLocation="preferExternal" > -->
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FIFESYSTEMS" />
<application
android:icon="@drawable/ic_custom"
android:label="@string/app_name" android:debuggable="true">
<activity
android:name=".YiRiSanXingActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="com.youdao.nanti.candy.yirisanxing.action.REVIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="question" />
</intent-filter>
</activity>
<receiver android:name=".alarm.AlarmReceiver">
<intent-filter>
<action android:name="com.youdao.nanti.candy.yirisanxing.action.ALERT" />
<action android:name="com.youdao.nanti.candy.yirisanxing.action.DELAY" />
<data android:scheme="alarm" />
</intent-filter>
</receiver>
<receiver android:name=".alarm.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.TIME_SET" />
<action android:name="android.intent.action.TIMEZONE_CHANGED" />
<action android:name="android.intent.action.LOCALE_CHANGED" />
</intent-filter>
<!--
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file" />
</intent-filter>
-->
</receiver>
<service android:name=".alarm.BeepService">
<intent-filter>
<action android:name="com.youdao.nanti.candy.yirisanxing.action.BEEP" />
</intent-filter>
</service>
<activity
android:name="ua.com.vassiliev.androidfilebrowser.FileBrowserActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light" >
</activity>
</application>
</manifest>