If you’re facing issues in building the project because of other architectures we don’t support, you can limit the build easily by adding this to the module ‘build.gradle’ file
ndk {
// From August 2019
abiFilters "armeabi-v7a"
// For emulator: x86, x86_64
abiFilters "armeabi-v7a", "arm64-v8a"
}