SamsungParts: add Dolby Atmos entry

* Basic ideas taken from https://github.com/SamarV-121/android_device_samsung_universal7885-common/tree/lineage-19.0/dap
This commit is contained in:
roynatech2544 2021-11-15 22:10:49 +09:00
commit 3eeab18801
No known key found for this signature in database
GPG key ID: 9675C32163D88D30
20 changed files with 347 additions and 117 deletions

View file

@ -35,7 +35,6 @@
<activity
android:name=".DeviceSettingsActivity"
android:exported="true"
android:label="@string/advanced_settings"
android:excludeFromRecents="true"
android:launchMode="singleTask">
<intent-filter>
@ -81,6 +80,15 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".dolby.DolbyActivity"
android:exported="true"
android:label="@string/dolby_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".battery.BatteryActivity"
android:exported="true"
@ -102,6 +110,17 @@
<action android:name="android.service.quicksettings.action.QS_TILE"/>
</intent-filter>
</service>
<service
android:name=".DolbyTile"
android:enabled="true"
android:icon="@drawable/ic_speaker_cleaner_icon"
android:label="@string/dolby_title"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
android:exported="true">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE"/>
</intent-filter>
</service>
<service
android:name=".FPSInfoService"
android:exported="false">