Build Architectures – GBG IDscan Documentation

Build Architectures

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 {
    abiFilters "armeabi-v7a"
    // From August 2019
    abiFilters "armeabi-v7a", "arm64-v8a"
    // For emulator: x86, x86_64
} 

Was this page helpful?