We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I update some words fix from opencc repository and using dev branch run assembleRelease to build the aar.
assembleRelease
But I found in 0.8.0 release includes x86 x86_64 arm64-v8a armeabi-v7a armeabi mips and mips64 Now only includes x86 x86_64 arm64-v8a armeabi-v7a
x86
x86_64
arm64-v8a
armeabi-v7a
armeabi
mips
mips64
I checked the Application.mk APP_ABI := all
APP_ABI := all
Any advice about how to build the others so? Thanks!
The text was updated successfully, but these errors were encountered:
Fixed by adding externalNativeBuild { ndkBuild { abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64", "mips", "mips64" arguments "NDK_APPLICATION_MK:=src/main/jni/Application.mk" } } } in library module ->android->defaultConfig
externalNativeBuild { ndkBuild { abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64", "mips", "mips64" arguments "NDK_APPLICATION_MK:=src/main/jni/Application.mk" } } }
Sorry, something went wrong.
No branches or pull requests
I update some words fix from opencc repository and using dev branch run
assembleRelease
to build the aar.
But I found in 0.8.0 release includes
x86
x86_64
arm64-v8a
armeabi-v7a
armeabi
mips
andmips64
Now only includes
x86
x86_64
arm64-v8a
armeabi-v7a
I checked the Application.mk
APP_ABI := all
Any advice about how to build the others so? Thanks!
The text was updated successfully, but these errors were encountered: