Merge branch 'develop' into feature/fga/improve_node_architecture
This commit is contained in:
commit
a230144431
59 changed files with 191 additions and 117 deletions
|
|
@ -26,8 +26,8 @@ import org.gradle.kotlin.dsl.project
|
|||
/**
|
||||
* Dependencies used by all the modules
|
||||
*/
|
||||
fun DependencyHandlerScope.commonDependencies() {
|
||||
implementation("com.jakewharton.timber:timber:5.0.1")
|
||||
fun DependencyHandlerScope.commonDependencies(libs: LibrariesForLibs) {
|
||||
implementation(libs.timber)
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -44,10 +44,10 @@ fun DependencyHandlerScope.composeDependencies(libs: LibrariesForLibs) {
|
|||
implementation("androidx.compose.material3:material3:1.1.0-alpha04")
|
||||
implementation("androidx.compose.material:material-icons-extended")
|
||||
implementation("androidx.compose.ui:ui-tooling-preview")
|
||||
implementation("androidx.activity:activity-compose:1.6.1")
|
||||
implementation(libs.androidx.activity.compose)
|
||||
debugImplementation("androidx.compose.ui:ui-tooling")
|
||||
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
||||
implementation("com.airbnb.android:showkase:1.0.0-beta17")
|
||||
implementation(libs.showkase)
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5")
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,6 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
commonDependencies()
|
||||
commonDependencies(libs)
|
||||
composeDependencies(libs)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,6 +44,6 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
commonDependencies()
|
||||
commonDependencies(libs)
|
||||
composeDependencies(libs)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@
|
|||
*/
|
||||
import extension.androidConfig
|
||||
import extension.commonDependencies
|
||||
import org.gradle.accessors.dm.LibrariesForLibs
|
||||
|
||||
val libs = the<LibrariesForLibs>()
|
||||
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
|
|
@ -38,5 +41,5 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
commonDependencies()
|
||||
commonDependencies(libs)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue