Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 14, 2022 20:55
Show Gist options
  • Save landarskiy/1997797b508d2dfbe758c07cc6ececff to your computer and use it in GitHub Desktop.
Save landarskiy/1997797b508d2dfbe758c07cc6ececff to your computer and use it in GitHub Desktop.
android {
namespace 'com.touchlane.compositebuild.example'
compileSdk 33
defaultConfig {
applicationId "com.touchlane.compositebuild.example"
minSdk 24
targetSdk 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary true
}
}
buildTypes {
release {
minifyEnabled 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'
}
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.2.0'
}
packagingOptions {
resources {
excludes += '/META-INF/{AL2.0,LGPL2.1}'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment