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 | |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 14 | <application |
| 15 | android:icon="@drawable/ic_launcher" |
| 16 | android:label="@string/advanced_settings" |
micky387 | 96b20db | 2021-03-06 02:33:42 +0100 | [diff] [blame] | 17 | android:theme="@style/Theme.AppTheme" |
Marko Man | 015b678 | 2019-09-26 03:22:20 +0200 | [diff] [blame] | 18 | android:appComponentFactory="androidx.core.app.CoreComponentFactory" |
| 19 | tools:replace="android:appComponentFactory" |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 20 | android:supportsRtl="true" > |
| 21 | <activity |
| 22 | android:name="org.omnirom.device.DeviceSettingsActivity" |
| 23 | android:exported="false" |
| 24 | android:label="@string/advanced_settings" |
| 25 | android:launchMode="singleTask" > |
| 26 | <intent-filter> |
| 27 | <action android:name="android.intent.action.MAIN" /> |
| 28 | <category android:name="android.intent.category.DEFAULT" /> |
| 29 | </intent-filter> |
| 30 | </activity> |
| 31 | <activity-alias |
| 32 | android:name="org.omnirom.device.DeviceSettings" |
| 33 | android:exported="true" |
| 34 | android:label="@string/advanced_settings" |
| 35 | android:targetActivity="DeviceSettingsActivity" > |
| 36 | <intent-filter> |
| 37 | <action android:name="android.intent.action.MAIN" /> |
| 38 | <!--<category android:name="android.intent.category.LAUNCHER" />--> |
| 39 | <category android:name="android.intent.category.DEFAULT" /> |
| 40 | </intent-filter> |
| 41 | </activity-alias> |
| 42 | <activity |
| 43 | android:name="org.omnirom.device.GestureSettingsActivity" |
| 44 | android:exported="false" |
| 45 | android:label="@string/category_gestures_title" |
| 46 | android:launchMode="singleTask" > |
| 47 | <intent-filter> |
| 48 | <action android:name="android.intent.action.MAIN" /> |
| 49 | <category android:name="android.intent.category.DEFAULT" /> |
| 50 | </intent-filter> |
| 51 | </activity> |
| 52 | <activity |
| 53 | android:name="org.omnirom.device.DozeSettingsActivity" |
| 54 | android:exported="false" |
| 55 | android:label="@string/doze_category_title" |
| 56 | android:launchMode="singleTask" > |
| 57 | <intent-filter> |
| 58 | <action android:name="android.intent.action.MAIN" /> |
| 59 | <category android:name="android.intent.category.DEFAULT" /> |
| 60 | </intent-filter> |
| 61 | </activity> |
micky387 | f61b97e | 2023-11-02 17:10:29 +0100 | [diff] [blame^] | 62 | <receiver android:name="org.omnirom.device.Startup" |
| 63 | android:exported="false"> |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 64 | <intent-filter android:priority="100" > |
| 65 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 66 | </intent-filter> |
| 67 | </receiver> |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 68 | <service |
| 69 | android:name="org.omnirom.device.GloveModeTileService" |
micky387 | 8555cc9 | 2019-08-17 10:39:00 +0200 | [diff] [blame] | 70 | android:icon="@drawable/ic_glove_tile" |
micky387 | 25477a0 | 2019-08-24 07:15:27 +0200 | [diff] [blame] | 71 | android:label="@string/glove_mode_title" |
micky387 | f61b97e | 2023-11-02 17:10:29 +0100 | [diff] [blame^] | 72 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 73 | android:exported="false"> |
micky387 | 3d18b49 | 2019-08-11 01:38:38 +0200 | [diff] [blame] | 74 | <intent-filter> |
| 75 | <action |
| 76 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 77 | </intent-filter> |
| 78 | </service> |
micky387 | 1893aec | 2020-03-09 19:45:37 +0100 | [diff] [blame] | 79 | <service |
| 80 | android:name="org.omnirom.device.VolumeTile" |
| 81 | android:icon="@drawable/ic_volume_ringer" |
| 82 | android:label="@string/volume_mode" |
micky387 | f61b97e | 2023-11-02 17:10:29 +0100 | [diff] [blame^] | 83 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 84 | android:exported="false"> |
micky387 | 1893aec | 2020-03-09 19:45:37 +0100 | [diff] [blame] | 85 | <intent-filter> |
| 86 | <action android:name="android.service.quicksettings.action.QS_TILE" /> |
| 87 | </intent-filter> |
| 88 | </service> |
| 89 | <service |
micky387 | a874f46 | 2021-04-15 23:37:15 +0200 | [diff] [blame] | 90 | android:name="org.omnirom.device.FrameRateTileService" |
| 91 | android:icon="@drawable/ic_refresh_rate" |
| 92 | android:label="@string/refresh_rate_title" |
micky387 | f61b97e | 2023-11-02 17:10:29 +0100 | [diff] [blame^] | 93 | android:permission="android.permission.BIND_QUICK_SETTINGS_TILE" |
| 94 | android:exported="false"> |
micky387 | a874f46 | 2021-04-15 23:37:15 +0200 | [diff] [blame] | 95 | <intent-filter> |
| 96 | <action |
| 97 | android:name="android.service.quicksettings.action.QS_TILE"/> |
| 98 | </intent-filter> |
| 99 | </service> |
micky387 | 54bf102 | 2019-07-03 03:31:11 +0200 | [diff] [blame] | 100 | </application> |
| 101 | </manifest> |