diff options
author | mueller-ma <mueller-ma@users.noreply.github.com> | 2023-05-05 17:18:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 17:18:42 +0200 |
commit | 5a74279ce84abe1d6fd1b717863955ddc9873928 (patch) | |
tree | be2f173b4d98066e740970a52ecbcb964fd95f37 | |
parent | ca0be76fdc18b308ee755ba0bd4aa4120cb09613 (diff) | |
download | AntennaPod-5a74279ce84abe1d6fd1b717863955ddc9873928.zip |
Mark quick settings tile as toggleable (#6464)
This removes the arrow that is currently displayed in the tile. That arrow is only shown on tiles that open a dialog or activity.
-rw-r--r-- | core/src/main/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/AndroidManifest.xml b/core/src/main/AndroidManifest.xml index 3d7b3b473..6f5508f27 100644 --- a/core/src/main/AndroidManifest.xml +++ b/core/src/main/AndroidManifest.xml @@ -59,6 +59,7 @@ <action android:name="android.service.quicksettings.action.QS_TILE" /> </intent-filter> <meta-data android:name="android.service.quicksettings.ACTIVE_TILE" android:value="true" /> + <meta-data android:name="android.service.quicksettings.TOGGLEABLE_TILE" android:value="true" /> </service> </application> |