-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
88 lines (74 loc) · 3.21 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lutshe"
android:installLocation="internalOnly"
android:versionCode="86"
android:versionName="8.6">
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE"/>
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/brownTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".NotificationServiceThatJustWorks"
android:enabled="true" >
<intent-filter>
<action android:name="com.lutshe.NotificationServiceThatJustWorks" />
</intent-filter>
</service>
<service
android:name=".MessagesDeliveryMonitoringService"
android:enabled="true" >
<intent-filter>
<action android:name="com.lutshe.MessagesDeliveryMonitoringService" />
</intent-filter>
</service>
<service
android:name=".PanicNotificationsService"
android:enabled="true" >
<intent-filter>
<action android:name="com.lutshe.PanicNotificationsService" />
</intent-filter>
</service>
<receiver
android:name=".NotificationServiceThatJustWorks$BootListener"
android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<receiver
android:name=".AlarmListener"
android:enabled="true" >
<intent-filter>
<action android:name="com.lutshe.AlarmListener" />
</intent-filter>
</receiver>
<receiver
android:name=".StartPanicServiceAlarmReceiver"
android:enabled="true" >
<intent-filter>
<action android:name="com.lutshe.StartPanicServiceAlarmReceiver" />
</intent-filter>
</receiver>
<meta-data android:name="com.crashlytics.ApiKey" android:value="96cfb43e6913852c3b39b9fee07ef00ed87760dc"/>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
</manifest>