fix(deps): go back to AGP 8.3.x
This commit is contained in:
parent
9ba9d1625f
commit
cd0a638106
2 changed files with 4 additions and 5 deletions
|
@ -19,13 +19,14 @@ import org.gradle.kotlin.dsl.findByType
|
|||
* Examples: `./gradlew test -PslimTests` will run unit tests for `nonFreeDebug` and `debug` build
|
||||
* variants in Android App and Library projects, and all tests in JVM projects.
|
||||
*/
|
||||
@Suppress("UnstableApiUsage")
|
||||
internal fun Project.configureSlimTests() {
|
||||
if (providers.gradleProperty(SLIM_TESTS_PROPERTY).isPresent) {
|
||||
// Disable unit test tasks on the release build type for Android Library projects
|
||||
extensions.findByType<LibraryAndroidComponentsExtension>()?.run {
|
||||
beforeVariants(selector().withBuildType(BUILD_TYPE_RELEASE)) {
|
||||
(it as HasUnitTestBuilder).enableUnitTest = false
|
||||
it.enableAndroidTest = true
|
||||
it.androidTest.enable = false
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -37,7 +38,7 @@ internal fun Project.configureSlimTests() {
|
|||
}
|
||||
beforeVariants(selector().withFlavor(FlavorDimensions.FREE to ProductFlavors.NON_FREE)) {
|
||||
(it as HasUnitTestBuilder).enableUnitTest = false
|
||||
it.enableAndroidTest = true
|
||||
it.androidTest.enable = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
[versions]
|
||||
# Not using alpha track due to installRelease regression
|
||||
# https://issuetracker.google.com/issues/315337463
|
||||
agp = "8.2.0"
|
||||
agp = "8.3.0-rc02"
|
||||
androidxActivity = "1.9.0-alpha03"
|
||||
bouncycastle = "1.77"
|
||||
# @keep used for kotlinCompilerExtensionVersion
|
||||
|
|
Loading…
Reference in a new issue