micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Marko Man | 015b678 | 2019-09-26 03:22:20 +0200 | [diff] [blame^] | 3 | xmlns:tools="http://schemas.android.com/tools" |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 4 | package="org.omnirom.device" |
| 5 | android:sharedUserId="android.uid.system" > |
| 6 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 7 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 8 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 9 | <uses-permission android:name="android.permission.INJECT_EVENTS" /> |
| 10 | <uses-permission android:name="android.permission.CAMERA" /> |
| 11 | |
| 12 | <protected-broadcast android:name="com.android.systemui.doze.pulse" /> |
| 13 | |
| 14 | <uses-sdk |
| 15 | android:minSdkVersion="26" |
| 16 | android:targetSdkVersion="26" /> |
| 17 | <application |
| 18 | android:icon="@drawable/ic_launcher" |
| 19 | android:label="@string/advanced_settings" |
| 20 | android:theme="@style/AppTheme" |
Marko Man | 015b678 | 2019-09-26 03:22:20 +0200 | [diff] [blame^] | 21 | android:appComponentFactory="androidx.core.app.CoreComponentFactory" |
| 22 | tools:replace="android:appComponentFactory" |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 23 | android:supportsRtl="true" > |
| 24 | <activity |
| 25 | android:name="org.omnirom.device.DeviceSettingsActivity" |
| 26 | android:exported="false" |
| 27 | android:label="@string/advanced_settings" |
| 28 | android:launchMode="singleTask" > |
| 29 | <intent-filter> |
| 30 | <action android:name="android.intent.action.MAIN" /> |
| 31 | <category android:name="android.intent.category.DEFAULT" /> |
| 32 | </intent-filter> |
| 33 | </activity> |
| 34 | <activity-alias |
| 35 | android:name="org.omnirom.device.DeviceSettings" |
| 36 | android:exported="true" |
| 37 | android:label="@string/advanced_settings" |
| 38 | android:targetActivity="DeviceSettingsActivity" > |
| 39 | <intent-filter> |
| 40 | <action android:name="android.intent.action.MAIN" /> |
| 41 | <!--<category android:name="android.intent.category.LAUNCHER" />--> |
| 42 | <category android:name="android.intent.category.DEFAULT" /> |
| 43 | </intent-filter> |
| 44 | </activity-alias> |
| 45 | <activity |
| 46 | android:name="org.omnirom.device.GestureSettingsActivity" |
| 47 | android:exported="false" |
| 48 | android:label="@string/category_gestures_title" |
| 49 | android:launchMode="singleTask" > |
| 50 | <intent-filter> |
| 51 | <action android:name="android.intent.action.MAIN" /> |
| 52 | <category android:name="android.intent.category.DEFAULT" /> |
| 53 | </intent-filter> |
| 54 | </activity> |
| 55 | <activity |
| 56 | android:name="org.omnirom.device.DozeSettingsActivity" |
| 57 | android:exported="false" |
| 58 | android:label="@string/doze_category_title" |
| 59 | android:launchMode="singleTask" > |
| 60 | <intent-filter> |
| 61 | <action android:name="android.intent.action.MAIN" /> |
| 62 | <category android:name="android.intent.category.DEFAULT" /> |
| 63 | </intent-filter> |
| 64 | </activity> |
| 65 | <activity |
| 66 | android:name="com.android.settings.Settings$SwipeToNotificationSuggestionActivity" |
| 67 | android:exported="true" |
| 68 | android:label="@string/fp_swipe_down_switch_title_head" |
| 69 | android:launchMode="singleTask" > |
| 70 | <intent-filter> |
| 71 | <action android:name="android.intent.action.MAIN" /> |
| 72 | <category android:name="android.intent.category.DEFAULT" /> |
| 73 | </intent-filter> |
| 74 | </activity> |
| 75 | <receiver android:name="org.omnirom.device.Startup" > |
| 76 | <intent-filter android:priority="100" > |
| 77 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 78 | </intent-filter> |
| 79 | </receiver> |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 80 | <service |
| 81 | android:name="org.omnirom.device.GloveModeTileService" |
micky387 | 8555cc9 | 2019-08-17 10:39:00 +0200 | [diff] [blame] | 82 | android:icon="@drawable/ic_glove_tile" |
micky387 | 25477a0 | 2019-08-24 07:15:27 +0200 | [diff] [blame] | 83 | android:label="@string/glove_mode_title" |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 84 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 85 | <intent-filter> |
| 86 | <action |
| 87 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 88 | </intent-filter> |
| 89 | </service> |
Luca Stefani | 60aeee1 | 2019-08-20 08:19:40 +0200 | [diff] [blame] | 90 | <service |
| 91 | android:name="org.omnirom.device.CameraTile" |
| 92 | android:icon="@drawable/ic_camera_tile" |
| 93 | android:label="@string/camera_label" |
| 94 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 95 | <intent-filter> |
| 96 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 97 | </intent-filter> |
| 98 | </service> |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 99 | </application> |
| 100 | </manifest> |