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 feba9be commit 0625c8eCopy full SHA for 0625c8e
android/app/build.gradle
@@ -96,6 +96,20 @@ android {
96
}
97
98
99
+
100
+ packagingOptions {
101
+ // Add these lines to handle 16KB page size issue
102
+ jniLibs {
103
+ useLegacyPackaging = true
104
+ }
105
106
+ // Exclude problematic libraries if needed
107
+ exclude "lib/arm64-v8a/libjdns_sd.so"
108
+ exclude "lib/arm64-v8a/libjdns_sd_embedded.so"
109
+ exclude "lib/x86_64/libjdns_sd.so"
110
+ exclude "lib/x86_64/libjdns_sd_embedded.so"
111
112
113
signingConfigs {
114
debug {
115
storeFile file('debug.keystore')
@@ -112,6 +126,7 @@ android {
126
127
128
129
130
buildTypes {
116
131
117
132
signingConfig signingConfigs.debug
0 commit comments