Change-Id: I6506c97a4e7f178df0d79f331e3854a22932196d (cherry picked from commit 447fe5af53fabbd0fc348552747ae3db42130179)
50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.settings.besloudness">
|
|
<!-- NOT org.lineageos.settings.device because that's reserved for device trees -->
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:label="@string/besloudness">
|
|
|
|
<receiver
|
|
android:name="org.lineageos.settings.device.BootCompletedReceiver"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<activity
|
|
android:name="org.lineageos.settings.device.PreferenceActivity"
|
|
android:exported="false"
|
|
android:label="@string/besloudness"
|
|
android:theme="@style/Theme.SubSettingsBase">
|
|
<intent-filter>
|
|
<action android:name="com.android.settings.action.IA_SETTINGS" />
|
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.sound" />
|
|
</activity>
|
|
|
|
<service
|
|
android:name="org.lineageos.settings.device.BesLoudnessTileService"
|
|
android:exported="true"
|
|
android:label="@string/besloudness"
|
|
android:icon="@drawable/besloudness_qs_tile_icon"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE"/>
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|