File tree Expand file tree Collapse file tree 3 files changed +5
-17
lines changed
build-logic/src/main/kotlin
wearApp/src/main/java/dev/johnoreilly/confetti/wear/tile Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ object AndroidSdk {
8
8
9
9
object WearSdk {
10
10
const val min = 26
11
- const val compile = 35
12
- const val target = 34
11
+ const val compile = 36
12
+ const val target = 35
13
13
}
14
14
15
15
object AutomotiveSdk {
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ decompose = "3.4.0-alpha03"
24
24
doistx-normalize = " 1.2.0"
25
25
essenty = " 2.5.0"
26
26
googleid = " 1.1.1"
27
- horologist = " 0.7.14-beta "
27
+ horologist = " 0.8.0-alpha "
28
28
io-coil-kt = " 2.7.0"
29
29
io-coil3-kt = " 3.2.0"
30
30
kermit = " 2.0.6"
@@ -46,7 +46,7 @@ room = "2.7.2"
46
46
tiles-tooling-preview = " 1.5.0"
47
47
wear = " 1.3.0"
48
48
wear-watchface = " 1.3.0-alpha07"
49
- wear-compose = " 1.5.0-beta05 "
49
+ wear-compose = " 1.5.0-beta06 "
50
50
wearPhoneInteractions = " 1.1.0"
51
51
work-runtime-ktx = " 2.10.2"
52
52
spring = " 3.5.3"
Original file line number Diff line number Diff line change @@ -23,18 +23,6 @@ class TileSync(
23
23
registry.dataClient
24
24
.putDataItem(PutDataRequest .create(" /tile_tracking_enabled" )).await()
25
25
26
- val myTilesList = listOf (
27
- CurrentSessionsTileService ::class .java.name,
28
- )
29
-
30
- val activeTiles = TileService .getActiveTilesAsync(context, executor).await()
31
-
32
- for (tileName in myTilesList) {
33
- if (activeTiles.any { it.componentName.className == tileName }) {
34
- wearAppHelper.markTileAsInstalled(tileName)
35
- } else {
36
- wearAppHelper.markTileAsRemoved(tileName)
37
- }
38
- }
26
+ wearAppHelper.updateInstalledTiles()
39
27
}
40
28
}
You can’t perform that action at this time.
0 commit comments