I recently tried adding the following dependencies...
# gradle
j
I recently tried adding the following dependencies:
Copy code
implementation "com.google.android.libraries.maps:maps:3.1.0-beta"
    implementation "com.google.maps.android:maps-v3-ktx:3.0.1"
But I'm receiving the following error:
Copy code
2 files found with path 'build-data.properties'.
Adding a packagingOptions block may help, please refer to
<https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html>
for more information
The link provided sends me to a website that doesn't exist, so how should I go about modifying packagingOptions?
g
Copy code
packagingOptions {
    pickFirst '**/build-data.properties'
}
Adding this to your build.gradle should solve your issue 👍