File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change
1
+ import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
1
2
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
3
3
4
plugins {
@@ -12,9 +13,9 @@ commonConfig {
12
13
13
14
allprojects {
14
15
tasks. withType(KotlinCompile ). configureEach {
15
- kotlinOptions {
16
- apiVersion = " 1.5 "
17
- languageVersion = " 1.5 "
16
+ compilerOptions {
17
+ apiVersion = KotlinVersion . KOTLIN_1_5
18
+ languageVersion = KotlinVersion . KOTLIN_1_5
18
19
}
19
20
}
20
21
pluginManager. withPlugin(" kotlin" ) {
Original file line number Diff line number Diff line change @@ -6,5 +6,3 @@ kotlin.code.style=official
6
6
kotlin.incremental =true
7
7
kotlin.caching.enabled =true
8
8
android.nonTransitiveRClass =true
9
- # https://issuetracker.google.com/issues/266279660
10
- android.experimental.androidTest.useUnifiedTestPlatform =false
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ google-androidtest = "1.5.2"
6
6
google-androidtestext = " 1.1.5"
7
7
maven-threetenbp = " 1.6.8"
8
8
maven-junit = " 4.13.2"
9
- maven-truth = " 1.1.5 "
9
+ maven-truth = " 1.2.0 "
10
10
maven-ticktock = " 1.2.0-2021e"
11
11
maven-binarycompatiblity = " 0.13.2"
12
12
You can’t perform that action at this time.
0 commit comments