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 {
3030 }
3131}
3232
33+
34+
3335tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). all {
3436 kotlinOptions {
3537 jvmTarget = " 1.8"
@@ -47,6 +49,9 @@ dependencies {
4749 androidTestImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion
4850 androidTestImplementation ' androidx.test:runner:' + rootProject. runnerVersion
4951 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'
5257}
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
4- ext. kotlin_version = ' 1.3.10 '
4+ ext. kotlin_version = ' 1.3.20 '
55 repositories {
66 // Insert local test repo here
77 jcenter()
88 google()
9+ mavenLocal()
910 }
1011 dependencies {
11- classpath ' com.android.tools.build:gradle:4.1.1 '
12+ classpath ' com.android.tools.build:gradle:4.2.0 '
1213 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
1314
1415 // 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
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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