We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37f506 commit e5274a6Copy full SHA for e5274a6
firebase-firestore/build.gradle.kts
@@ -11,6 +11,7 @@ android {
11
defaultConfig {
12
minSdkVersion(property("minSdkVersion") as Int)
13
targetSdkVersion(property("targetSdkVersion") as Int)
14
+ setMultiDexEnabled(true)
15
}
16
sourceSets {
17
getByName("main") {
@@ -26,6 +27,7 @@ android {
26
27
pickFirst("META-INF/kotlinx-serialization-runtime.kotlin_module")
28
pickFirst("META-INF/AL2.0")
29
pickFirst("META-INF/LGPL2.1")
30
+ pickFirst("androidsupportmultidexversion.txt")
31
32
33
@@ -61,6 +63,7 @@ kotlin {
61
63
val androidMain by getting {
62
64
dependencies {
65
api("com.google.firebase:firebase-firestore:21.4.3")
66
+ implementation("com.android.support:multidex:1.0.3")
67
68
69
0 commit comments