Removing scrypt native library that doesn't work on Android

This commit is contained in:
Vitor Pamplona
2024-02-14 17:48:57 -05:00
parent 4746b5b18a
commit 7074446cae
4 changed files with 15 additions and 0 deletions

View File

@@ -33,6 +33,11 @@
# JNA For Libsodium
-keep class com.goterl.lazysodium.** { *; }
# libscrypt
-keep class com.lambdaworks.codec.** { *; }
-keep class com.lambdaworks.crypto.** { *; }
-keep class com.lambdaworks.jni.** { *; }
# JNA also requires AWT, which Android does not have. So the classes are broken down to filter AWT out
-keep class com.sun.jna.ToNativeConverter { *; }
-keep class com.sun.jna.NativeMapped { *; }