File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ Excludes transitive optional non FOSS google location dependency from fdroid builds
Original file line number Diff line number Diff line change @@ -110,6 +110,10 @@ ext.libs = [
110
110
' mavericks' : " com.airbnb.android:mavericks:$mavericks " ,
111
111
' mavericksTesting' : " com.airbnb.android:mavericks-testing:$mavericks "
112
112
],
113
+ maplibre : [
114
+ ' androidSdk' : " org.maplibre.gl:android-sdk:9.5.2" ,
115
+ ' pluginAnnotation' : " org.maplibre.gl:android-plugin-annotation-v9:1.0.0"
116
+ ],
113
117
mockk : [
114
118
' mockk' : " io.mockk:mockk:$mockk " ,
115
119
' mockkAndroid' : " io.mockk:mockk-android:$mockk "
Original file line number Diff line number Diff line change @@ -507,9 +507,14 @@ dependencies {
507
507
implementation ' commons-codec:commons-codec:1.15'
508
508
509
509
// MapTiler
510
- implementation ' org.maplibre.gl:android-sdk:9.5.2'
511
- implementation ' org.maplibre.gl:android-plugin-annotation-v9:1.0.0'
512
-
510
+ fdroidImplementation(libs. maplibre. androidSdk) {
511
+ exclude group : ' com.google.android.gms' , module : ' play-services-location'
512
+ }
513
+ fdroidImplementation(libs. maplibre. pluginAnnotation) {
514
+ exclude group : ' com.google.android.gms' , module : ' play-services-location'
515
+ }
516
+ gplayImplementation libs. maplibre. androidSdk
517
+ gplayImplementation libs. maplibre. pluginAnnotation
513
518
514
519
// TESTS
515
520
testImplementation libs. tests. junit
You can’t perform that action at this time.
0 commit comments