10 lines
285 B
Kotlin
10 lines
285 B
Kotlin
apply {
|
|
from("$rootDir/base-module.gradle")
|
|
}
|
|
|
|
dependencies {
|
|
"implementation"(project(Modules.core))
|
|
"implementation"(project(Modules.authDomain))
|
|
Amazon.amplifyDependencies.forEach { "implementation"(it) }
|
|
Amazon.awsDependencies.forEach { "implementation"(it) }
|
|
} |