Skip to content

Commit

Permalink
feat: disable x86 support (#3094) (#3100)
Browse files Browse the repository at this point in the history
Co-authored-by: Mohamad Jaara <[email protected]>
Co-authored-by: Oussama Hassine <[email protected]>
  • Loading branch information
3 people authored Nov 20, 2024
1 parent 6027a26 commit 08c0cff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
12 changes: 12 additions & 0 deletions calling/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,15 @@ kotlin {
}
}
}

android {
defaultConfig {
ndk {
abiFilters.apply {
add("armeabi-v7a")
add("arm64-v8a")
add("x86_64")
}
}
}
}
9 changes: 9 additions & 0 deletions cryptography/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,13 @@ android {
testOptions.unitTests.all {
it.enabled = false
}
defaultConfig {
ndk {
abiFilters.apply {
add("armeabi-v7a")
add("arm64-v8a")
add("x86_64")
}
}
}
}

0 comments on commit 08c0cff

Please sign in to comment.