-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
101 lines (92 loc) · 3.93 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
99
100
101
<?xml version="1.0" encoding="utf-8"?>
<!--
Notify Me!, an app to enhance Android(TM)'s abilities to show notifications.
Copyright (C) 2013 Tom Kranz
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Android is a trademark of Google Inc.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tpmkranz.notifyme"
android:versionCode="11"
android:versionName="1.9.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19" />
<uses-permission
android:name="android.permission.WRITE_SETTINGS"/>
<application
android:name="org.tpmkranz.notifyme.TemporaryStorage"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="org.tpmkranz.notifyme.MainActivity"
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="org.tpmkranz.notifyme.EditFilterActivity"
android:label="@string/title_activity_edit_filter"
android:parentActivityName="org.tpmkranz.notifyme.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.tpmkranz.notifyme.MainActivity" />
</activity>
<service
android:name="org.tpmkranz.notifyme.NotificationService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" >
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/accessibilitymetadata" />
</service>
<activity
android:name="org.tpmkranz.notifyme.AppPicker"
android:label="@string/title_activity_app_picker"
android:theme="@style/DialogTheme" >
</activity>
<activity
android:name="org.tpmkranz.notifyme.NotificationActivity"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:noHistory="true"
android:theme="@style/TransparentWP" >
</activity>
<activity
android:name="org.tpmkranz.notifyme.NotificationActivityTransparent"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:noHistory="true"
android:theme="@style/Transparent" >
</activity>
<activity
android:name="org.tpmkranz.notifyme.Unlock"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:noHistory="true"
android:theme="@style/TransparentWP" >
</activity>
<activity
android:name="org.tpmkranz.notifyme.LightUp"
android:excludeFromRecents="true"
android:launchMode="singleInstance"
android:noHistory="true"
android:theme="@style/TransparentWP" >
</activity>
</application>
</manifest>