blob: 95a88311238e8266f6d8f353c84074eb1d012331 [file] [log] [blame]
Zvikomborero VIncent Zvikarambaa25011a2016-07-21 16:32:35 -04001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="org.davis.inputdisabler"
3 coreApp="true"
4 android:sharedUserId="android.uid.system">
5
6 <!-- Need permission to listen when boot is completed (and start the service at that point) -->
7 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
8
9 <!-- During phone calls, proximity sensor blanks the screen, we need to disable the inputs -->
10 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
11
12 <application android:allowBackup="true"
13 android:label="@string/app_name">
14
15 <!-- Receives action to start the update service -->
16 <receiver android:name=".BootCompleteReceiver">
17 <intent-filter>
18 <action android:name="android.intent.action.BOOT_COMPLETED" />
19 </intent-filter>
20 </receiver>
21
22 <!-- Updater service -->
23 <service
24 android:enabled="true"
25 android:name=".InputDisablerService" />
26 </application>
27
28</manifest>