Remove unnecessary configuration from project DSLs

pull/1455/head
Tom Tresansky 1 year ago
parent e10024e8a7
commit befaa6cab4
No known key found for this signature in database
GPG Key ID: 99DCF7A2C0C53E39

@ -1,14 +1,6 @@
androidLibrary {
namespace = "com.google.samples.apps.nowinandroid.core.common"
buildTypes {
buildTypes {
// Need the empty closure to avoid "dangling pure expression" error
debug {}
release {}
}
}
testing {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")

@ -16,12 +16,6 @@ androidLibrary {
json()
}
buildTypes {
// Need the empty closure to avoid "dangling pure expression" error
debug {}
release {}
}
testing {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")

@ -8,12 +8,6 @@ androidLibrary {
api(project(":core:model"))
}
buildTypes {
// Need the empty closure to avoid "dangling pure expression" error
debug {}
release {}
}
testing {
dependencies {
implementation(project(":core:testing"))

@ -5,13 +5,8 @@ androidLibrary {
implementation(project(":core:data"))
}
feature {
description = "Calling the configure method enables this lib to be treated as a feature"
}
compose {
description = "Calling the configure method enables compose support"
}
feature {}
compose {}
testing {
dependencies {

Loading…
Cancel
Save