Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Last active November 15, 2022 11:42
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/64e2160946a159594838caf4e86deceb to your computer and use it in GitHub Desktop.
Save landarskiy/64e2160946a159594838caf4e86deceb 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"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
composeOptions {
kotlinCompilerExtensionVersion = libs.versions.androidxComposeCompiler.get()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment