41 lines
No EOL
878 B
Kotlin
41 lines
No EOL
878 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
compileSdk = AppConfig.compileSdkVersion
|
|
minSdk = AppConfig.minSdkVersion
|
|
targetSdk = AppConfig.targetSdkVersion
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
isCoreLibraryDesugaringEnabled = false
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = Versions.compose
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
/** Compose */
|
|
implementation(Compose.foundation)
|
|
implementation(Compose.material)
|
|
implementation(Compose.uiTooling)
|
|
|
|
/** Other libraries */
|
|
implementation(Library.accompanistSystemUiController)
|
|
} |