Merge branch 'develop' into feature/fga/update_rust_sdk and allow using 'libs' from precompiled script
This commit is contained in:
commit
a23ecfca1b
10 changed files with 32 additions and 18 deletions
|
|
@ -21,6 +21,7 @@ import com.android.build.api.dsl.CommonExtension
|
|||
import org.gradle.api.JavaVersion
|
||||
import org.gradle.api.Project
|
||||
import java.io.File
|
||||
import org.gradle.accessors.dm.LibrariesForLibs
|
||||
|
||||
fun CommonExtension<*, *, *, *>.androidConfig(project: Project) {
|
||||
defaultConfig {
|
||||
|
|
@ -47,13 +48,14 @@ fun CommonExtension<*, *, *, *>.androidConfig(project: Project) {
|
|||
}
|
||||
}
|
||||
|
||||
fun CommonExtension<*, *, *, *>.composeConfig() {
|
||||
fun CommonExtension<*, *, *, *>.composeConfig(libs: LibrariesForLibs) {
|
||||
|
||||
buildFeatures {
|
||||
compose = true
|
||||
}
|
||||
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion = "1.4.0"
|
||||
kotlinCompilerExtensionVersion = libs.versions.composecompiler.get()
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue