-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
98 lines (96 loc) · 4.06 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.crossrt.showtime"
android:versionCode="14"
android:versionName="v3.4">
<uses-sdk
android:minSdkVersion="8" android:targetSdkVersion="18"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:allowBackup="false"
android:icon="@drawable/logo"
android:label="@string/app_name"
android:theme="@style/MyTheme" >
<activity
android:name=".Main"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".InitialPage"
android:exported="false"
android:label="@string/first_time_setup" >
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".MenuPreferences"
android:label="@string/preferences" >
</activity>
<activity
android:name=".MenuAbout"
android:label="@string/about" >
</activity>
<activity
android:name=".ClassToday"
android:label="@string/todayclass" >
<intent-filter>
<action android:name="com.crossrt.showtime.TodayClass.action" />
</intent-filter>
</activity>
<activity
android:name=".ClassAll"
android:label="@string/ACT" >
</activity>
<activity
android:name=".Preferences"
android:label="Preferences">
</activity>
<activity
android:name=".DCwidgetSettings"
android:label="DCwidgetSettings"
android:exported="true">
</activity>
<receiver android:name=".Widget" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="com.crossrt.showtime.DATABASE_UPDATED"/>
<action android:name="com.crossrt.showtime.FILTER_UPDATED"/>
<action android:name="android.intent.action.DATE_CHANGED"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
<receiver android:name=".CallAutoUpdate" android:exported="true" android:enabled="true" android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<receiver android:name=".AlarmReceiver" android:exported="false">
<intent-filter>
<action android:name="com.crossrt.showtime.DATABASE_UPDATED"/>
</intent-filter>
</receiver>
<service android:name=".AutoUpdater"></service>
<service android:name=".DCwidget"
android:icon="@drawable/dashclock"
android:label="@string/app_name"
android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA">
<intent-filter>
<action android:name="com.google.android.apps.dashclock.Extension" />
</intent-filter>
<meta-data android:name="protocolVersion" android:value="1" />
<meta-data android:name="description"
android:value="Display the coming class" />
<meta-data android:name="settingsActivity"
android:value=".DCwidgetSettings" />
</service>
</application>
</manifest>