Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/user-interface/quicksettings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {

defaultConfig {
minSdk = 21
targetSdk = 35
targetSdk = 36
}
kotlinOptions {
jvmTarget = "1.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>

<!--
This tile listens and keeps track of its state when the app calls
[TileService.requestListeningState].
Expand All @@ -47,6 +46,14 @@
<meta-data
android:name="android.service.quicksettings.TOGGLEABLE_TILE"
android:value="true" />
<!--
Categorize this tile as a Utility so that it's organized in that category in
Quick Settings edit. Available in Android 16 QPR 2
Build.VERSION_CODES_FULL.BAKLAVA_1
-->
<meta-data
android:name="android.service.quicksettings.TILE_CATEGORY"
android:value="android.service.quicksettings.CATEGORY_UTILITIES" />
</service>

</application>
Expand Down
Loading