Skip to content

Instantly share code, notes, and snippets.

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 uteke/de2ec8f3d61252343275a3abf1a0dc9b to your computer and use it in GitHub Desktop.
Save uteke/de2ec8f3d61252343275a3abf1a0dc9b to your computer and use it in GitHub Desktop.
Kotlin Android Composable library convention
plugins {
id("kotlin-android-library-conventions")
}
@Suppress("UnstableApiUsage")
android {
buildFeatures.compose = true
composeOptions.kotlinCompilerExtensionVersion = libs.versionKotlinCompiler
}
dependencies {
implementation(platform(libs.libAndroidxComposeBom))
implementation(libs.libAndroidxComposeFoundation)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment