We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4ee3a commit 0cad2e8Copy full SHA for 0cad2e8
app/build.gradle.kts
@@ -23,10 +23,18 @@ android {
23
buildTypes {
24
release {
25
isMinifyEnabled = true
26
+ isShrinkResources = true
27
proguardFiles(
28
getDefaultProguardFile("proguard-android-optimize.txt"),
29
"proguard-rules.pro"
30
)
31
+
32
+ ndk {
33
+ // maplibre native increases the app size by a lot, hence we limit
34
+ // the architectures that we're building for
35
+ // see https://github.com/maplibre/maplibre-compose/discussions/615
36
+ abiFilters.addAll(listOf("arm64-v8a", "armeabi-v7a"))
37
+ }
38
}
39
debug {
40
isDebuggable = true
0 commit comments