This repository was archived by the owner on Oct 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
src/main/kotlin/app/passwordstore/gradle/flavors Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55
66plugins { `kotlin- dsl` }
77
8- kotlin.jvmToolchain(20 )
8+ kotlin.jvmToolchain(17 )
99
1010gradlePlugin {
1111 plugins {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ internal fun Project.configureSlimTests() {
2525 extensions.findByType<LibraryAndroidComponentsExtension >()?.run {
2626 beforeVariants(selector().withBuildType(BUILD_TYPE_RELEASE )) {
2727 (it as HasUnitTestBuilder ).enableUnitTest = false
28- it.androidTest.enable = false
28+ it.enableAndroidTest = true
2929 }
3030 }
3131
@@ -37,7 +37,7 @@ internal fun Project.configureSlimTests() {
3737 }
3838 beforeVariants(selector().withFlavor(FlavorDimensions .FREE to ProductFlavors .NON_FREE )) {
3939 (it as HasUnitTestBuilder ).enableUnitTest = false
40- it.androidTest.enable = false
40+ it.enableAndroidTest = true
4141 }
4242 }
4343 }
Original file line number Diff line number Diff line change 11[versions ]
2- agp = " 8.3.0-alpha16"
2+ # Not using alpha track due to installRelease regression
3+ # https://issuetracker.google.com/issues/315337463
4+ agp = " 8.2.0"
35androidxActivity = " 1.8.2"
46bouncycastle = " 1.77"
57moshi = " 1.15.0"
You can’t perform that action at this time.
0 commit comments