Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 15, 2022 12:24
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/28287e0f444df1a3b02c43bd162b2c80 to your computer and use it in GitHub Desktop.
Save landarskiy/28287e0f444df1a3b02c43bd162b2c80 to your computer and use it in GitHub Desktop.
plugins {
id("compositebuild.android.application")
id("compositebuild.jetbrains.kotlin.android")
id("compositebuild.android.compose")
}
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"
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment