Skip to content

Commit e730bde

Browse files
committed
Use useLegacyPackaging for smaller APK size
Pro: smaller APK size (like before) Con: installed size will end up being larger than the latest packaging method In this case, it's a fair trade-off.
1 parent 35c9347 commit e730bde

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

android/app/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ android {
1818
compileSdk = 36
1919
ndkVersion = "29.0.14206865"
2020

21+
packagingOptions {
22+
jniLibs {
23+
useLegacyPackaging = true
24+
}
25+
}
26+
2127
kotlinOptions {
2228
jvmTarget = "17"
2329
}

0 commit comments

Comments
 (0)