You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while changing android/app/build.gradle to use APK separation
def enableSeparateBuildPerCPUArchitecture = true
This will make the assemble failure. and got following error message:
./gradlew assembleDebug
FAILURE: Build failed with an exception.
What went wrong:
A problem occurred configuring project ':app'.
Conflicting configuration : 'armeabi-v7a,x86' in ndk abiFilters cannot be present when splits abi filters are set :
x86,armeabi-v7a
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
can it coexist (split abi & ndk)?
i face issue that i need to split APKs (with split abi) while a library should set ndk (react-native-splash-screen). Still not found working solution.
facebook
locked as resolved and limited conversation to collaborators
Sep 13, 2019
Environment
Run
react-native info
in your terminal and paste its contents here.Description
while changing android/app/build.gradle to use APK separation
def enableSeparateBuildPerCPUArchitecture = true
This will make the assemble failure. and got following error message:
have to also comment out ndk section to make it work. in previous version, only modify the def is OK.
The text was updated successfully, but these errors were encountered: