In order to circumvent the usage quota of Google Maps the map provider was changed to be MapBox now. Additionally the maps implementation was refactored to be better extendable in future.
16 lines
543 B
Groovy
16 lines
543 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '8.2.0-beta03' apply false
|
|
id 'com.google.gms.google-services' version '4.4.2' apply false
|
|
id("com.google.firebase.crashlytics") version "3.0.3" apply false
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
maven {
|
|
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
|
|
}
|
|
}
|
|
} |