-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
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
How can I exclude arm64-v8a #458
Comments
this may help: http://frescolib.org/docs/multiple-apks.html#_ |
@lizhiqiang-unnoo this doesn't help,I just want to exclude the arm64-v8a,but this create each platform an apk file |
@goodboywt you can use include 'arm64-v8a' . will just create arm_64 apk |
@huclengyue I don't want the arm64 dir |
Try playing with abiFilters. You might find this link useful: http://tools.android.com/tech-docs/new-build-system/tips. abiFilter should allow you to select single architecture to include in your app, abiFilters should let you do the same with multiple archs. |
try packagingOptions { |
I found the arm64-v8a dir in 0.5.3,but another lib dependent by my app has not the arm64-v8a,so my app will crash on arm64 platform,as you know ,the other lib hasn't "so" file math arm64-v8a so that my app can't find the "so" file on arm64 platform.
How can I exclude arm64-v8a dir in build.gradle
The text was updated successfully, but these errors were encountered: