Skip to content

Commit 90ffa9b

Browse files
committed
Update maplibre, add 'channel' flavors and bump version to 0.55 for release
1 parent faaf715 commit 90ffa9b

File tree

1 file changed

+31
-9
lines changed

1 file changed

+31
-9
lines changed

app/build.gradle

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ android {
88
}
99

1010
dependenciesInfo {
11-
includeInApk = false
11+
includeInApk = true
1212
}
1313

1414
defaultConfig {
1515
applicationId "xyz.zood.george"
1616
compileSdk = 36
1717
minSdkVersion 29
1818
targetSdkVersion 36
19-
versionCode 51
20-
versionName "0.51"
19+
versionCode 55
20+
versionName "0.55"
2121
multiDexEnabled = true
2222
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2323
resourceConfigurations += ['en', 'tr', 'ru']
@@ -28,9 +28,7 @@ android {
2828
}
2929
}
3030
ndk {
31-
// abiFilters 'x86_64', 'arm64-v8a'
32-
//noinspection ChromeOsAbiSupport
33-
abiFilters 'arm64-v8a'
31+
abiFilters 'x86_64', 'arm64-v8a'
3432
}
3533
}
3634
buildTypes {
@@ -44,6 +42,30 @@ android {
4442
}
4543
}
4644

45+
flavorDimensions "channel"
46+
productFlavors {
47+
github {
48+
dimension "channel"
49+
dependenciesInfo {
50+
includeInApk = false
51+
}
52+
ndk {
53+
//noinspection ChromeOsAbiSupport
54+
abiFilters 'arm64-v8a'
55+
}
56+
}
57+
playStore {
58+
dimension "channel"
59+
dependenciesInfo {
60+
includeInApk = true
61+
}
62+
ndk {
63+
//noinspection ChromeOsAbiSupport
64+
abiFilters 'arm64-v8a', 'armeabi-v7a'
65+
}
66+
}
67+
}
68+
4769
externalNativeBuild {
4870
cmake {
4971
path = "CMakeLists.txt"
@@ -84,11 +106,11 @@ dependencies {
84106
implementation "androidx.viewpager2:viewpager2:1.1.0"
85107

86108
// cloud messaging
87-
implementation ('com.google.firebase:firebase-messaging:23.1.2', {
109+
implementation ('com.google.firebase:firebase-messaging:25.0.1') {
88110
exclude group: 'com.google.firebase', module: 'firebase-core'
89111
exclude group: 'com.google.firebase', module: 'firebase-analytics'
90112
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
91-
})
113+
}
92114

93115
implementation 'com.google.guava:guava:33.5.0-android'
94116

@@ -101,7 +123,7 @@ dependencies {
101123
implementation 'com.squareup.picasso:picasso:2.5.2'
102124

103125
implementation 'com.vanniktech:android-image-cropper:4.6.0'
104-
implementation 'org.maplibre.gl:android-sdk:11.13.5'
126+
implementation 'org.maplibre.gl:android-sdk:12.0.1'
105127
implementation 'org.maplibre.gl:android-plugin-annotation-v9:3.0.2'
106128

107129
// jetpack libs

0 commit comments

Comments
 (0)