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" |
micky387 | 96b20db | 2021-03-06 02:33:42 +0100 | [diff] [blame] | 20 | android:theme="@style/Theme.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> |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 65 | <receiver android:name="org.omnirom.device.Startup" > |
| 66 | <intent-filter android:priority="100" > |
| 67 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 68 | </intent-filter> |
| 69 | </receiver> |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 70 | <service |
| 71 | android:name="org.omnirom.device.GloveModeTileService" |
micky387 | 8555cc9 | 2019-08-17 10:39:00 +0200 | [diff] [blame] | 72 | android:icon="@drawable/ic_glove_tile" |
micky387 | 25477a0 | 2019-08-24 07:15:27 +0200 | [diff] [blame] | 73 | android:label="@string/glove_mode_title" |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 74 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 75 | <intent-filter> |
| 76 | <action |
| 77 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 78 | </intent-filter> |
| 79 | </service> |
micky387 | 1893aec | 2020-03-09 19:45:37 +0100 | [diff] [blame] | 80 | <service |
| 81 | android:name="org.omnirom.device.VolumeTile" |
| 82 | android:icon="@drawable/ic_volume_ringer" |
| 83 | android:label="@string/volume_mode" |
| 84 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 85 | <intent-filter> |
| 86 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 87 | </intent-filter> |
| 88 | </service> |
| 89 | <service |
Luca Stefani | 60aeee1 | 2019-08-20 08:19:40 +0200 | [diff] [blame] | 90 | android:name="org.omnirom.device.CameraTile" |
| 91 | android:icon="@drawable/ic_camera_tile" |
| 92 | android:label="@string/camera_label" |
| 93 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 94 | <intent-filter> |
| 95 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 96 | </intent-filter> |
| 97 | </service> |
micky387 | a874f46 | 2021-04-15 23:37:15 +0200 | [diff] [blame^] | 98 | <service |
| 99 | android:name="org.omnirom.device.FrameRateTileService" |
| 100 | android:icon="@drawable/ic_refresh_rate" |
| 101 | android:label="@string/refresh_rate_title" |
| 102 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> |
| 103 | <intent-filter> |
| 104 | <action |
| 105 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 106 | </intent-filter> |
| 107 | </service> |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 108 | </application> |
| 109 | </manifest> |