blob: c168c05e91fd4b064760d210ea19cda12a0da5ff [file] [log] [blame]
micky38754bf1022019-07-03 03:31:11 +02001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Marko Man015b6782019-09-26 03:22:20 +02003 xmlns:tools="http://schemas.android.com/tools"
micky38754bf1022019-07-03 03:31:11 +02004 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
micky38754bf1022019-07-03 03:31:11 +020014 <application
15 android:icon="@drawable/ic_launcher"
16 android:label="@string/advanced_settings"
maxwenc31409a2022-11-08 22:37:36 +010017 android:theme="@style/AppTheme"
Marko Man015b6782019-09-26 03:22:20 +020018 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
19 tools:replace="android:appComponentFactory"
micky38754bf1022019-07-03 03:31:11 +020020 android:supportsRtl="true" >
21 <activity
micky3879acac862021-07-27 06:49:20 +020022 android:name="org.omnirom.device.TileActivity"
23 android:taskAffinity=""
24 android:excludeFromRecents="true"
25 android:exported="true" >
26 <intent-filter>
27 <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
28 </intent-filter>
29 </activity>
30 <activity
micky38754bf1022019-07-03 03:31:11 +020031 android:name="org.omnirom.device.DeviceSettingsActivity"
32 android:exported="false"
micky38754bf1022019-07-03 03:31:11 +020033 android:launchMode="singleTask" >
34 <intent-filter>
35 <action android:name="android.intent.action.MAIN" />
36 <category android:name="android.intent.category.DEFAULT" />
37 </intent-filter>
38 </activity>
39 <activity-alias
40 android:name="org.omnirom.device.DeviceSettings"
41 android:exported="true"
micky38754bf1022019-07-03 03:31:11 +020042 android:targetActivity="DeviceSettingsActivity" >
43 <intent-filter>
44 <action android:name="android.intent.action.MAIN" />
45 <!--<category android:name="android.intent.category.LAUNCHER" />-->
46 <category android:name="android.intent.category.DEFAULT" />
47 </intent-filter>
micky3879acac862021-07-27 06:49:20 +020048 <intent-filter>
49 <action android:name="org.omnirom.device.DEVICE_SETTING_PAGE"/>
50 <category android:name="android.intent.category.DEFAULT"/>
51 </intent-filter>
micky38754bf1022019-07-03 03:31:11 +020052 </activity-alias>
53 <activity
54 android:name="org.omnirom.device.GestureSettingsActivity"
55 android:exported="false"
56 android:label="@string/category_gestures_title"
57 android:launchMode="singleTask" >
58 <intent-filter>
59 <action android:name="android.intent.action.MAIN" />
60 <category android:name="android.intent.category.DEFAULT" />
61 </intent-filter>
62 </activity>
63 <activity
64 android:name="org.omnirom.device.DozeSettingsActivity"
65 android:exported="false"
66 android:label="@string/doze_category_title"
67 android:launchMode="singleTask" >
68 <intent-filter>
69 <action android:name="android.intent.action.MAIN" />
70 <category android:name="android.intent.category.DEFAULT" />
71 </intent-filter>
72 </activity>
micky387f61b97e2023-11-02 17:10:29 +010073 <receiver android:name="org.omnirom.device.Startup"
74 android:exported="false">
micky38754bf1022019-07-03 03:31:11 +020075 <intent-filter android:priority="100" >
76 <action android:name="android.intent.action.BOOT_COMPLETED" />
77 </intent-filter>
78 </receiver>
micky3873d18b492019-08-11 01:38:38 +020079 <service
80 android:name="org.omnirom.device.GloveModeTileService"
micky3878555cc92019-08-17 10:39:00 +020081 android:icon="@drawable/ic_glove_tile"
micky38725477a02019-08-24 07:15:27 +020082 android:label="@string/glove_mode_title"
micky387f61b97e2023-11-02 17:10:29 +010083 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
micky3873ad3d752023-11-03 14:57:04 +010084 android:exported="true">
micky3873d18b492019-08-11 01:38:38 +020085 <intent-filter>
86 <action
87 android:name="android.service.quicksettings.action.QS_TILE"/>
88 </intent-filter>
89 </service>
micky3871893aec2020-03-09 19:45:37 +010090 <service
91 android:name="org.omnirom.device.VolumeTile"
92 android:icon="@drawable/ic_volume_ringer"
93 android:label="@string/volume_mode"
micky387f61b97e2023-11-02 17:10:29 +010094 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
micky3873ad3d752023-11-03 14:57:04 +010095 android:exported="true">
micky3871893aec2020-03-09 19:45:37 +010096 <intent-filter>
97 <action android:name="android.service.quicksettings.action.QS_TILE" />
98 </intent-filter>
99 </service>
100 <service
micky3871b1a82c2024-05-02 22:38:36 -0400101 android:name="org.omnirom.device.GameTileService"
102 android:icon="@drawable/ic_game_rate"
103 android:label="@string/game_mode_title"
104 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
105 android:exported="true">
106 <intent-filter>
107 <action
108 android:name="android.service.quicksettings.action.QS_TILE"/>
109 </intent-filter>
110 </service>
111 <service
micky387a874f462021-04-15 23:37:15 +0200112 android:name="org.omnirom.device.FrameRateTileService"
113 android:icon="@drawable/ic_refresh_rate"
114 android:label="@string/refresh_rate_title"
micky387f61b97e2023-11-02 17:10:29 +0100115 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
micky3873ad3d752023-11-03 14:57:04 +0100116 android:exported="true">
micky387a874f462021-04-15 23:37:15 +0200117 <intent-filter>
118 <action
119 android:name="android.service.quicksettings.action.QS_TILE"/>
120 </intent-filter>
121 </service>
micky38754bf1022019-07-03 03:31:11 +0200122 </application>
123</manifest>