Skip to content

Commit 4cca9b7

Browse files
committed
Avoid hardware AES for Android
1 parent 7070b46 commit 4cca9b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libsql-ffi/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ fn build_multiple_ciphers(out_path: &Path) -> PathBuf {
504504
}
505505
let target = env::var("TARGET").unwrap();
506506

507-
if target.ends_with("apple-ios") {
507+
if target.ends_with("apple-ios") || target.contains("android") {
508508
config.define("SQLITE3MC_OMIT_AES_HARDWARE_SUPPORT", "ON");
509509
}
510510

0 commit comments

Comments
 (0)