From 75993b34581df4056f9e2773428ba340944864ef Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Thu, 30 Aug 2018 17:07:20 +0700 Subject: [PATCH] [gradle-plugin] Make release build type not debuggable --- .../plugin/experimental/internal/KotlinNativeBuildType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kotlin-native-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/experimental/internal/KotlinNativeBuildType.kt b/tools/kotlin-native-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/experimental/internal/KotlinNativeBuildType.kt index cf97511c30b..f894581dff6 100644 --- a/tools/kotlin-native-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/experimental/internal/KotlinNativeBuildType.kt +++ b/tools/kotlin-native-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/gradle/plugin/experimental/internal/KotlinNativeBuildType.kt @@ -29,7 +29,7 @@ class KotlinNativeBuildType( companion object { val DEBUG = KotlinNativeBuildType("debug", true, false) - val RELEASE = KotlinNativeBuildType("release", true, true) + val RELEASE = KotlinNativeBuildType("release", false, true) val DEFAULT_BUILD_TYPES: Collection = Arrays.asList(DEBUG, RELEASE) } } \ No newline at end of file