diff options
author | Christian Schneppe <christian.schneppe@pix-art.de> | 2020-02-05 20:12:44 +0100 |
---|---|---|
committer | Christian Schneppe <christian.schneppe@pix-art.de> | 2020-02-05 20:12:44 +0100 |
commit | 0da5d84cf401c1064fb2e701aa214e05880e29c7 (patch) | |
tree | 257549c1e2d6837104be01591de314290ac7edfd | |
parent | 3741aee8157039493126d38ce1e59e235720a6f9 (diff) |
add library excludes
-rw-r--r-- | build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 5fe54e47b..9e262739b 100644 --- a/build.gradle +++ b/build.gradle @@ -130,11 +130,11 @@ android { packagingOptions { //X86 - exclude "lib/x86/libconscrypt_jni.so" - exclude "lib/x86/libpl_droidsonroids_gif.so" + exclude "lib/x86/**" //X86_64 - exclude "lib/x86_64/libconscrypt_jni.so" - exclude "lib/x86_64/libpl_droidsonroids_gif.so" + exclude "lib/x86_64/**" + //armeabi + exclude "lib/armeabi/**" } dexOptions { |