forked from helloworld1/AnyUnlock
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
44 lines (42 loc) · 2 KB
/
AndroidManifest.xml
File metadata and controls
44 lines (42 loc) · 2 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cz.destil.fixbrokenpb" android:versionCode="4" android:versionName="1.1">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar">
<activity android:name=".SettingsActivity" 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=".LockScreen" />
<activity android:name=".AdminPermissionSet" />
<activity android:name=".AboutActivity" />
<service android:name=".UnlockService" />
<service android:name=".LockScreenService" />
<receiver android:name=".AdminReceiver" android:label="@string/app_name"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data android:name="android.app.device_admin"
android:resource="@xml/admin_turn_off" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<receiver android:name=".BootReceiver" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name="WidgetProvider" android:icon="@drawable/ic_launcher" android:label="@string/lock_screen">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
</application>
</manifest>