File tree Expand file tree Collapse file tree 5 files changed +26
-13
lines changed
screenshotTest/java/dev/johnoreilly/confetti/wear Expand file tree Collapse file tree 5 files changed +26
-13
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ android {
113
113
114
114
matchingFallbacks + = listOf (" release" )
115
115
}
116
- // create("benchmark") {
117
- // isShrinkResources = true
118
- // isMinifyEnabled = true
119
- // signingConfig = signingConfigs.getByName("confetti")
120
- // setProguardFiles(
121
- // listOf(
122
- // getDefaultProguardFile("proguard-android.txt"),
123
- // "proguard-benchmark.pro"
124
- // )
125
- // )
126
- // matchingFallbacks.addAll(listOf("release"))
127
- // }
116
+ create(" benchmark" ) {
117
+ isShrinkResources = true
118
+ isMinifyEnabled = true
119
+ signingConfig = signingConfigs.getByName(" confetti" )
120
+ setProguardFiles(
121
+ listOf (
122
+ getDefaultProguardFile(" proguard-android.txt" ),
123
+ " proguard-benchmark.pro"
124
+ )
125
+ )
126
+ matchingFallbacks.addAll(listOf (" release" ))
127
+ }
128
128
getByName(" debug" ) {
129
129
signingConfig = signingConfigs.getByName(" confetti" )
130
130
}
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ dependencies {
23
23
// Crashlytics depends on datastore v1.0 but we're using v1.1
24
24
exclude(group = " androidx.datastore" , module = " datastore-preferences" )
25
25
}
26
+ // Force a newer version of tink in the classpath for compatibility with protobuf-java:4.x
27
+ // Removes java.lang.NoSuchMethodError: 'void com.google.crypto.tink.proto.Keyset.makeExtensionsImmutable()'
28
+ implementation(libs.tink)
26
29
implementation(libs.plugin.wire)
27
30
implementation(libs.plugin.compose.multiplatform)
28
31
implementation(libs.jib.core)
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ wear-compose-material = "androidx.wear.compose:compose-material:1.5.0-alpha11"
206
206
wear-compose-material3 = " androidx.wear.compose:compose-material3:1.0.0-alpha34"
207
207
xoxo = " net.mbonnin.xoxo:xoxo:0.4.0"
208
208
kermit = { module = " co.touchlab:kermit" , version.ref = " kermit" }
209
-
209
+ tink = " com.google.crypto.tink:tink:1.17.0 "
210
210
jib-core = " com.google.cloud.tools:jib-core:0.27.2"
211
211
google-cloud-run = " com.google.cloud:google-cloud-run:0.54.0"
212
212
Original file line number Diff line number Diff line change 27
27
<string name =" settings_empty_name" >empty name</string >
28
28
<string name =" home_bookmarked_sessions" >Bookmarked Sessions</string >
29
29
<string name =" home_settings_content_description" >Settings</string >
30
+ <string name =" settings_allow_lte" >Autoriser le LTE</string >
31
+ <string name =" settings_show_networks" >Afficher les réseaux</string >
32
+ <string name =" settings_show_networks_and_data" >Afficher les réseaux et la data</string >
33
+ <string name =" settings_hide_networks" >Masquer les réseaux</string >
30
34
</resources >
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ fun ConferenceHomeScreen() {
35
35
daySelected = {},
36
36
onSettingsClick = {},
37
37
onBookmarksClick = {},
38
+ addBookmark = {},
39
+ removeBookmark = {}
38
40
)
39
41
}
40
42
@@ -72,6 +74,8 @@ fun ConferenceHomeScreenWithBookmarks() {
72
74
daySelected = {},
73
75
onSettingsClick = {},
74
76
onBookmarksClick = {},
77
+ addBookmark = {},
78
+ removeBookmark = {}
75
79
)
76
80
}
77
81
@@ -93,6 +97,8 @@ fun ConferenceHomeScreenLoading() {
93
97
daySelected = {},
94
98
onSettingsClick = {},
95
99
onBookmarksClick = {},
100
+ addBookmark = {},
101
+ removeBookmark = {}
96
102
)
97
103
}
98
104
You can’t perform that action at this time.
0 commit comments