-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAndroidManifest.xml
79 lines (71 loc) · 3.39 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.fhooe.mc.bluetootwifiunlocker"
android:versionCode="5"
android:versionName="1.4" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light" >
<activity
android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.MainScreen"
android:label="@string/app_name" >
</activity>
<receiver
android:name="at.fhooe.mc.bluetoothwifiunlocker.MyAdmin"
android:permission="android.permission.BIND_DEVICE_ADMIN" >
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/device_admin" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<receiver android:name="at.fhooe.mc.bluetoothwifiunlocker.receiver.BluetoothReceiver" >
<intent-filter>
<action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
<action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" />
<action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
<action android:name="BluetoothConnection.changed"/>
</intent-filter>
</receiver>
<receiver android:name="at.fhooe.mc.bluetoothwifiunlocker.receiver.WifiReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="android.net.wifi.SCAN_RESULTS" />
</intent-filter>
</receiver>
<activity
android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.WIFI_Networks"
android:label="@string/title_activity_wifi__networks" >
</activity>
<activity
android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.Bluetooth_Devices"
android:label="@string/title_activity_bluetooth__devices" >
</activity>
<activity android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.HelpScreen"
android:label="HelpScreen" >
</activity>
<activity
android:name="at.fhooe.mc.bluetoothwifiunlocker.tabfragments.TimerScreen"
android:label="Timer" >
</activity>
</application>
</manifest>