You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/internal/configureJvmApplication.kt
+9
Original file line number
Diff line number
Diff line change
@@ -242,6 +242,15 @@ private fun JvmApplicationContext.configureProguardTask(
Copy file name to clipboardExpand all lines: gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/tasks/AbstractProguardTask.kt
+8
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,10 @@ abstract class AbstractProguardTask : AbstractComposeDesktopTask() {
40
40
@get:InputFiles
41
41
val configurationFiles:ConfigurableFileCollection= objects.fileCollection()
42
42
43
+
@get:Optional
44
+
@get:Input
45
+
val dontobfuscate:Property<Boolean?> = objects.nullableProperty()
46
+
43
47
// todo: DSL for excluding default rules
44
48
// also consider pulling coroutines rules from coroutines artifact
Copy file name to clipboardExpand all lines: gradle-plugins/compose/src/test/kotlin/org/jetbrains/compose/test/tests/integration/DesktopApplicationTest.kt
0 commit comments