Closed marlonl3001 closed 2 years ago
Hello @marlonl3001,
Thanks for waiting for our answer. Since our SDKs are using the latest Android NDK which doesn’t support armeabi CPUs, you should add an abiFilter to the build.gradle of your base module which would filter out the armeabi architecture. This way the modules would have matching sets of supported ABI’s and your code should compile. You can do this by adding this section to your base modules build.gradle:
android {
defaultConfig {
ndk {
abiFilters 'ARM64_V8A', 'ARMEABI_V7A', 'X86', 'X86_64'
}
}
}
Best regards, Anja
Description
I´m trying to implement the sdk inside an on-demand dynamic feature. Maven and implementation statements are written in the module's build.gradle, like the image below:
When I try to compile the app, I got the following error:
When I move maven declaration to top level build.gradle and library implementation to build.gradle (app), it works fine, but I need to implement it in an on-demand module.
Environment Details
BlinkCard version: 2.4.0