Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: specify NDK ABI filters for Android modules
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaky committed Nov 13, 2023
1 parent 9a68497 commit 73f2217
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ fun Project.configureAndroidModule(
multiDexEnabled = true

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

ndk {
abiFilters.clear()
abiFilters += arrayOf("armeabi-v7a", "arm64-v8a")
}
}

compileOptions {
Expand Down

0 comments on commit 73f2217

Please sign in to comment.