faceterteam / PayCards_Android

Credit card scanning for mobile apps
https://pay.cards/
Other
197 stars 126 forks source link

Does it work only on armeabi-v7a? #15

Open matghazaryan opened 6 years ago

matghazaryan commented 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.

What could I do here to add support all devices? (armeabi,x86, armeabi-v7 etc) ?

OSemenovBoyarka commented 6 years ago

Same issue - any changes on this?

matghazaryan commented 6 years ago

I run it on emulator pixel2 (x86-64). And it worked

OSemenovBoyarka commented 6 years ago

I'm using android plugin 3.1.2 and it stopped to compile after transition to it

mostafa-pgs commented 6 years ago

Same issue. Any suggestion?