I made a shared library using rust for an android app. When the Android app loads the library, make an error as following:
java.lang.UnsatisfiedLinkError: dlopen failed: cannot locate symbol "rust_crypto_util_fixed_time_eq_asm" referenced by "/data/app/com.kt.ktcrypto-4fggQbbTPHo3WulOyE1JIw==/lib/arm64/libE2eCryptoLib.so"..
When I look the source the function "rust_crypto_util_fixed_time_eq_asm" , I found the "fixed_time_eq_asm " function support only target_arch "x86, x86_64, arm".
"fixed_time_eq_asm" is in rust-crypto-working/src/rust-crypto/cryptoutil.rs
How can I fix the error?