Open matghazaryan opened 6 years ago
Recently I found that scannerSDK has
externalNativeBuild { ndkBuild { abiFilters 'armeabi-v7a' arguments "--jobs=${Runtime.runtime.availableProcessors().toString()}" } }
When I am running on x86 devices it couldn't compile at all. When I am adding
abiFilters 'armeabi-v7a', 'x86' gradle build failing.
abiFilters 'armeabi-v7a', 'x86'
What could I do here to add support all devices? (armeabi,x86, armeabi-v7 etc) ?
Same issue - any changes on this?
I run it on emulator pixel2 (x86-64). And it worked
I'm using android plugin 3.1.2 and it stopped to compile after transition to it
3.1.2
Same issue. Any suggestion?
Recently I found that scannerSDK has
When I am running on x86 devices it couldn't compile at all. When I am adding
abiFilters 'armeabi-v7a', 'x86'
gradle build failing.What could I do here to add support all devices? (armeabi,x86, armeabi-v7 etc) ?