-
Notifications
You must be signed in to change notification settings - Fork 13
/
AndroidManifest.xml
91 lines (79 loc) · 3.18 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.pixmob.freemobile.netstat"
android:installLocation="internalOnly"
android:versionCode="26"
android:versionName="26" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature
android:name="android.hardware.telephony.gsm"
android:required="true" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:name=".Application"
android:allowBackup="true"
android:backupAgent="BackupAgent"
android:icon="@drawable/ic_launcher_netstat"
android:label="@string/app_name" >
<activity
android:name=".ui.Netstat"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ui.DocumentBrowser" >
</activity>
<service android:name=".SyncService" >
</service>
<service
android:name=".MonitorService"
android:label="@string/service_monitor" >
</service>
<receiver android:name=".MonitorServiceStarter" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".ConnectivityListener"
android:exported="false" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<receiver android:name=".DatabaseCleanup" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".NotificationHandler"
android:exported="false" >
<intent-filter>
<action android:name="org.pixmob.freemobile.netstat.notif" />
</intent-filter>
</receiver>
<provider
android:name=".content.NetstatContentProvider"
android:authorities="org.pixmob.freemobile.netstat"
android:exported="false"
android:label="@string/app_name" >
</provider>
<activity
android:name=".ui.Preferences"
android:label="@string/menu_preferences" >
</activity>
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAI2_Wh0ED3k-ZAn6QVep2w6PuUHq5xIekfCMxViA" />
</application>
</manifest>