lifting nightly to the application module

This commit is contained in:
Adam Brown 2022-08-09 14:33:02 +01:00
parent e53972cf2d
commit b72a174edf
3 changed files with 4 additions and 8 deletions

View file

@ -340,6 +340,10 @@ android {
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
]
}
buildFeatures {
viewBinding true
}
}
dependencies {

View file

@ -66,10 +66,6 @@ android {
testCoverageEnabled = coverage.enableTestCoverage
}
}
nightly {
initWith release
matchingFallbacks = ['release']
}
release
}
@ -111,10 +107,6 @@ android {
test {
java.srcDirs += "src/sharedTest/java"
}
// Add sourceSets for `release` version when building `nightly`
nightly {
java.srcDirs += "src/release/java"
}
}
buildFeatures {