[gradle-plugin] Make release build type not debuggable

This commit is contained in:
Ilya Matveev
2018-08-30 17:07:20 +07:00
committed by Ilya Matveev
parent a91f91bc65
commit 75993b3458
@@ -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<KotlinNativeBuildType> = Arrays.asList(DEBUG, RELEASE)
}
}