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 ed017b6 commit e09971aCopy full SHA for e09971a
example/android/build.gradle
@@ -42,8 +42,18 @@ allprojects {
42
maven {
43
url("$rootDir/../node_modules/detox/Detox-android")
44
}
45
- }
+ }
46
47
+ // Required: you must exclude the Google Play service Maps SDK from
48
+ // your transitive dependencies to make sure there won't be
49
+ // multiple copies of Google Maps SDK in your binary, as the Navigation
50
+ // SDK already bundles the Google Maps SDK.
51
+ configurations {
52
+ implementation {
53
+ exclude group: 'com.google.android.gms', module: 'play-services-maps'
54
55
56
+
57
subprojects {
58
afterEvaluate { project ->
59
if (project.hasProperty('android')) {
0 commit comments