File tree 3 files changed +11
-6
lines changed
ui/espresso/AccessibilitySample
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ android {
11
11
versionName " 1.0"
12
12
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
14
+
15
+ multiDexEnabled true
14
16
}
15
17
lintOptions {
16
18
abortOnError false
@@ -22,6 +24,10 @@ android {
22
24
includeAndroidResources = true
23
25
}
24
26
}
27
+ compileOptions {
28
+ sourceCompatibility JavaVersion . VERSION_1_8
29
+ targetCompatibility JavaVersion . VERSION_1_8
30
+ }
25
31
}
26
32
27
33
tasks. withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile ). all {
@@ -34,13 +40,13 @@ dependencies {
34
40
// App dependencies
35
41
implementation ' androidx.annotation:annotation:' + rootProject. androidxAnnotationVersion;
36
42
implementation ' com.google.guava:guava:' + rootProject. guavaVersion
37
- // accessibility breaks without this on classpath
38
- implementation ' com.android.support:viewpager:28.0.0-alpha1'
43
+ implementation ' androidx.multidex:multidex:2.0.1'
39
44
40
45
// Testing-only dependencies
41
46
androidTestImplementation ' androidx.test:core:' + rootProject. coreVersion
42
47
androidTestImplementation ' androidx.test.ext:junit:' + rootProject. extJUnitVersion
43
48
androidTestImplementation ' androidx.test:runner:' + rootProject. runnerVersion
44
49
androidTestImplementation ' androidx.test.espresso:espresso-core:' + rootProject. espressoVersion
45
50
androidTestImplementation ' androidx.test.espresso:espresso-accessibility:' + rootProject. espressoVersion
51
+ androidTestImplementation ' com.google.android.apps.common.testing.accessibility.framework:accessibility-test-framework:3.1'
46
52
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
google()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:4.0 .1'
11
+ classpath ' com.android.tools.build:gradle:4.1 .1'
12
12
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
13
13
14
14
// NOTE: Do not place your application dependencies here; they belong
@@ -20,7 +20,6 @@ allprojects {
20
20
repositories {
21
21
// Insert local test repo here
22
22
jcenter()
23
-
24
23
google()
25
24
}
26
25
}
Original file line number Diff line number Diff line change 1
- # Wed Jan 06 11:50:52 PST 2021
1
+ # Wed Jan 06 14:30:55 PST 2021
2
2
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.1.1-all .zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.5-bin .zip
You can’t perform that action at this time.
0 commit comments