Hi,
I'm trying to test my app with new guidelines about 64-bits librairies, using this link:
:: Command Line
# A successful install:
> adb install --abi armeabi-v7a YOUR_APK_FILE.apk
Success
# If your APK does not have the 64-bit libraries:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk
adb: failed to install YOUR_APK_FILE.apk: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
# If your device does not support 64-bit, an emulator, for example:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk
ABI arm64-v8a not supported on this device
when trying to use adb to "force" one library, I have this problem :
adb install --abi armeabi-v7a zzz.apk
zzz.apk: 1 file pushed. 2.3 MB/s (7359404 bytes in 3.087s)
Error: Unknown option: --abi
what is installed on my macBook:
Android Debug Bridge version 1.0.40
Version 4986621
any ideas with this problem ?
kind regards,
PaBX