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 5
5
6
6
plugins { `kotlin- dsl` }
7
7
8
- kotlin.jvmToolchain(20 )
8
+ kotlin.jvmToolchain(17 )
9
9
10
10
gradlePlugin {
11
11
plugins {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ internal fun Project.configureSlimTests() {
25
25
extensions.findByType<LibraryAndroidComponentsExtension >()?.run {
26
26
beforeVariants(selector().withBuildType(BUILD_TYPE_RELEASE )) {
27
27
(it as HasUnitTestBuilder ).enableUnitTest = false
28
- it.androidTest.enable = false
28
+ it.enableAndroidTest = true
29
29
}
30
30
}
31
31
@@ -37,7 +37,7 @@ internal fun Project.configureSlimTests() {
37
37
}
38
38
beforeVariants(selector().withFlavor(FlavorDimensions .FREE to ProductFlavors .NON_FREE )) {
39
39
(it as HasUnitTestBuilder ).enableUnitTest = false
40
- it.androidTest.enable = false
40
+ it.enableAndroidTest = true
41
41
}
42
42
}
43
43
}
Original file line number Diff line number Diff line change 1
1
[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"
3
5
androidxActivity = " 1.8.2"
4
6
bouncycastle = " 1.77"
5
7
moshi = " 1.15.0"
You can’t perform that action at this time.
0 commit comments