Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 1 | <!--suppress AndroidUnknownAttribute --> |
Nicholas Chum | 702d467 | 2016-07-08 21:59:45 -0400 | [diff] [blame] | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 3 | xmlns:tools="http://schemas.android.com/tools" |
bigrushdog | 134c196 | 2016-12-14 01:06:32 -0800 | [diff] [blame] | 4 | coreApp="true" |
George G | e9e6979 | 2017-03-05 03:01:29 +0200 | [diff] [blame] | 5 | package="projekt.interfacer" |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 6 | android:sharedUserId="android.uid.system" |
George G | e9e6979 | 2017-03-05 03:01:29 +0200 | [diff] [blame] | 7 | android:versionCode="50" |
| 8 | android:versionName="fifty" |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 9 | tools:ignore="GradleOverrides"> |
Nicholas Chum | 702d467 | 2016-07-08 21:59:45 -0400 | [diff] [blame] | 10 | |
Nicholas Chum | 7ee005e | 2016-07-10 00:25:25 -0400 | [diff] [blame] | 11 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 12 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
Nicholas Chum | d7d3cc3 | 2016-07-31 06:02:22 -0400 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/> |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 14 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> |
| 15 | <uses-permission |
| 16 | android:name="android.permission.FORCE_STOP_PACKAGES" |
| 17 | tools:ignore="ProtectedPermissions"/> |
| 18 | <uses-permission |
| 19 | android:name="android.permission.DELETE_PACKAGES" |
| 20 | tools:ignore="ProtectedPermissions"/> |
| 21 | <uses-permission |
| 22 | android:name="android.permission.INSTALL_PACKAGES" |
| 23 | tools:ignore="ProtectedPermissions"/> |
bigrushdog | 134c196 | 2016-12-14 01:06:32 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS"/> |
| 25 | <uses-permission android:name="android.permission.MODIFY_OVERLAYS"/> |
George G | e9e6979 | 2017-03-05 03:01:29 +0200 | [diff] [blame] | 26 | <protected-broadcast android:name="projekt.interfacer.STATUS_CHANGED" /> |
| 27 | <protected-broadcast android:name="projekt.interfacer.CALLER_AUTHORIZED" /> |
Nicholas Chum | 702d467 | 2016-07-08 21:59:45 -0400 | [diff] [blame] | 28 | |
| 29 | <application |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 30 | android:allowBackup="false" |
| 31 | android:icon="@mipmap/ic_launcher" |
George G | e9e6979 | 2017-03-05 03:01:29 +0200 | [diff] [blame] | 32 | android:label="Theme Interfacer" |
| 33 | android:roundIcon="@mipmap/ic_launcher_round" |
Nicholas Chum | 702d467 | 2016-07-08 21:59:45 -0400 | [diff] [blame] | 34 | android:supportsRtl="true" |
Nicholas Chum | d922fcb | 2017-02-25 20:32:11 -0500 | [diff] [blame] | 35 | android:theme="@android:style/Theme.NoDisplay" |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 36 | tools:ignore="GoogleAppIndexingWarning"> |
| 37 | <service |
| 38 | android:name=".services.JobService" |
bigrushdog | 134c196 | 2016-12-14 01:06:32 -0800 | [diff] [blame] | 39 | android:exported="true" |
Nicholas Chum | 421c765 | 2017-02-14 00:56:09 -0500 | [diff] [blame] | 40 | android:permission="android.permission.MODIFY_OVERLAYS"/> |
Nicholas Chum | 702d467 | 2016-07-08 21:59:45 -0400 | [diff] [blame] | 41 | </application> |
beanstown106 | 697d376 | 2016-07-31 19:51:46 -0400 | [diff] [blame] | 42 | </manifest> |