We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f543f6 commit 133b8e0Copy full SHA for 133b8e0
ui/espresso/RecyclerViewSample/app/build.gradle
@@ -27,7 +27,14 @@ android {
27
versionName "1.0"
28
29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
30
+
31
+ multiDexEnabled true
32
+ }
33
+ compileOptions {
34
+ sourceCompatibility 1.8
35
+ targetCompatibility 1.8
36
}
37
38
lintOptions {
39
abortOnError false
40
@@ -37,6 +44,7 @@ dependencies {
44
// App dependencies
45
implementation 'androidx.annotation:annotation:' + rootProject.androidxAnnotationVersion;
46
implementation 'androidx.recyclerview:recyclerview:' + rootProject.androidxRecyclerVersion;
47
+ implementation 'androidx.multidex:multidex:2.0.1'
48
41
49
// Testing-only dependencies
42
50
androidTestImplementation 'androidx.test:core:' + rootProject.coreVersion;
0 commit comments