Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed crash when using mapbox on Android 11 #4852

Merged
merged 1 commit into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildSrc/src/main/java/dependencies/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ object Dependencies {
const val play_services_maps = "com.google.android.gms:play-services-maps:17.0.1"
const val play_services_location = "com.google.android.gms:play-services-location:18.0.0"
const val mapbox_android_sdk = "com.mapbox.mapboxsdk:mapbox-android-sdk:9.2.1"
const val mapbox_android_telemetry = "com.mapbox.mapboxsdk:mapbox-android-telemetry:6.1.0" // We need this to fix https://github.com/mapbox/mapbox-gl-native-android/issues/425. Once we update Mapbox Android SDK we can get rid of it.
const val mapbox_android_plugin_annotation = "com.mapbox.mapboxsdk:mapbox-android-plugin-annotation-v9:0.8.0" // Upgrading will require more changes in our codebase https://github.com/getodk/collect/issues/4305
const val osmdroid = "org.osmdroid:osmdroid-android:6.1.11"
const val guava = "com.google.guava:guava:30.1.1-android"
Expand Down
1 change: 1 addition & 0 deletions collect_app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ dependencies {
implementation Dependencies.firebase_crashlytics

implementation Dependencies.mapbox_android_sdk
implementation Dependencies.mapbox_android_telemetry
implementation Dependencies.mapbox_android_plugin_annotation

implementation Dependencies.guava
Expand Down