Skip to content

Commit d2d969f

Browse files
committed
example: Set jvm platform proguard version to 7.6.0
1 parent 4d1a5fb commit d2d969f

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

composeApp/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ compose.desktop {
164164

165165
buildTypes.release.proguard {
166166
configurationFiles.from("proguard-rules-jvm.pro")
167+
version.set("7.6.0")
168+
optimize.set(false)
167169
}
168170

169171
nativeDistributions {

settings.gradle.kts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,27 @@
33
pluginManagement {
44
includeBuild("convention-plugins")
55
repositories {
6-
google()
6+
google {
7+
mavenContent {
8+
includeGroupAndSubgroups("androidx")
9+
includeGroupAndSubgroups("com.android")
10+
includeGroupAndSubgroups("com.google")
11+
}
12+
}
713
mavenCentral()
814
gradlePluginPortal()
915
}
1016
}
1117

1218
dependencyResolutionManagement {
1319
repositories {
14-
google()
20+
google {
21+
mavenContent {
22+
includeGroupAndSubgroups("androidx")
23+
includeGroupAndSubgroups("com.android")
24+
includeGroupAndSubgroups("com.google")
25+
}
26+
}
1527
mavenCentral()
1628
}
1729
}

0 commit comments

Comments
 (0)