1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-31 11:31:40 +00:00

64 bit ABIs will be a requirement

https://android-developers.googleblog.com/2019/01/get-your-apps-ready-for-64-bit.html
This commit is contained in:
M66B 2019-01-16 19:17:30 +00:00
parent 618b7146e6
commit 1ab397ba4c
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ This app starts a foreground service with a low priority status bar notification
* Offline storage and operations * Offline storage and operations
* Battery friendly * Battery friendly
* Low data usage * Low data usage
* Small (~4 MB) * Small (~5.5 MB)
* Material design * Material design
## Pro features ## Pro features

View file

@ -79,9 +79,9 @@ android {
pickFirst 'META-INF/LICENSE.txt' pickFirst 'META-INF/LICENSE.txt'
// keep lib/armeabi-v7a/libsqlite3x.so // keep lib/armeabi-v7a/libsqlite3x.so
exclude 'lib/arm64-v8a/libsqlite3x.so' // keep lib/arm64-v8a/libsqlite3x.so
// keep lib/x86/libsqlite3x.so // keep lib/x86/libsqlite3x.so
exclude 'lib/x86_64/libsqlite3x.so' // keep lib/x86_64/libsqlite3x.so
} }
} }