Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 15, 2022 11:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save landarskiy/a99b30756fdf2bfe2ea3a5f64849353b to your computer and use it in GitHub Desktop.
Save landarskiy/a99b30756fdf2bfe2ea3a5f64849353b to your computer and use it in GitHub Desktop.
android {
namespace = "com.touchlane.compositebuild.example"
defaultConfig {
applicationId = "com.touchlane.compositebuild.example"
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
composeOptions {
kotlinCompilerExtensionVersion = libs.versions.androidxComposeCompiler.get()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment