File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
ui/espresso/AccessibilitySample Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ android {
30
30
}
31
31
}
32
32
33
+
34
+
33
35
tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). all {
34
36
kotlinOptions {
35
37
jvmTarget = " 1.8"
@@ -47,6 +49,9 @@ dependencies {
47
49
androidTestImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion
48
50
androidTestImplementation ' androidx.test:runner:' + rootProject. runnerVersion
49
51
androidTestImplementation ' androidx.test.espresso:espresso-core:' + rootProject. espressoVersion
50
- androidTestImplementation ' androidx.test.espresso:espresso-accessibility:' + rootProject. espressoVersion
51
- androidTestImplementation ' com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:3.1'
52
+ androidTestImplementation(' androidx.test.espresso:espresso-accessibility:' + rootProject. espressoVersion) {
53
+ // workaround for https://github.com/android/android-test/issues/861
54
+ exclude group : ' org.checkerframework' , module : ' checker'
55
+ }
56
+ androidTestImplementation ' com.google.truth:truth:1.1.3'
52
57
}
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.3.10 '
4
+ ext. kotlin_version = ' 1.3.20 '
5
5
repositories {
6
6
// Insert local test repo here
7
7
jcenter()
8
8
google()
9
+ mavenLocal()
9
10
}
10
11
dependencies {
11
- classpath ' com.android.tools.build:gradle:4.1.1 '
12
+ classpath ' com.android.tools.build:gradle:4.2.0 '
12
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13
14
14
15
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.5 -bin.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.7.1 -bin.zip
You can’t perform that action at this time.
0 commit comments