forked from rootkit007/cobra-iradar-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
74 lines (69 loc) · 4.83 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
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.greatnowhere.radar"
android:versionCode="22"
android:versionName="1.0beta22">
<uses-sdk android:minSdkVersion="16" android:maxSdkVersion="21" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION"/>
<application android:label="@string/app_name" android:allowBackup="true"
android:icon="@drawable/app_icon" android:name=".MainRadarApplication">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<activity android:name=".MainRadarActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTask"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.greatnowhere.radar.config.SettingsActivity" android:label="Settings" android:noHistory="true" android:excludeFromRecents="true"></activity>
<service android:label="iRadar Connectivity Service" android:permission="android.permission.BLUETOOTH" android:name="com.cobra.iradar.RadarConnectionService" android:enabled="true" android:singleUser="true"></service>
<service android:label="iRadar Monitoring Service" android:name="com.cobra.iradar.RadarMonitorService" android:enabled="true" android:singleUser="true"></service>
<service android:label="Data Collector Service" android:name="com.greatnowhere.radar.services.CollectorService" android:enabled="true" android:singleUser="true"></service>
<service android:label="Threat Logger Service" android:name="com.greatnowhere.radar.threats.ThreatLogger$ThreatLoggerService" android:enabled="true" android:singleUser="true"></service>
<service android:label="DB Pruner Service" android:name="com.greatnowhere.radar.threats.ThreatLogger$DBPruneService" android:enabled="true"></service>
<service android:name=".location.PhoneActivityDetector$ActivityDetectorIntentReceiver" android:enabled="true"></service>
<receiver android:name="com.greatnowhere.radar.receiver.BootReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<receiver android:name="com.greatnowhere.radar.receiver.UIModeReceiver" android:enabled="true" android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.DOCK_EVENT"/>
</intent-filter>
</receiver>
<!-- Receiver for triggering random alerts -->
<receiver android:name="com.cobra.iradar.DebugEventsInjectionReceiver" android:exported="true" android:enabled="true">
<intent-filter>
<action android:name="com.cobra.iradar.InjectRandomAlert"/>
<action android:name="com.cobra.iradar.InjectDevConnected"/>
<action android:name="com.cobra.iradar.InjectDevDisconnected"/>
</intent-filter>
</receiver>
</application>
</manifest>