Browse Source

PEMA-107 Add argument to ndk to prevent "bad file descriptor"

Reference: https://jira.appcelerator.org/plugins/servlet/mobile#issue/TIMOB-27776
pull/25/head
ignaciogarcia 3 years ago
parent
commit
7a3df224e6
No known key found for this signature in database GPG Key ID: 5E6A455C909DD623
  1. 2
      android/build.gradle

2
android/build.gradle

@ -81,7 +81,7 @@ android {
jniDebuggable true
externalNativeBuild {
ndkBuild {
arguments "-j${threadsToUse}", 'NDK_LOG=1', 'NDK_DEBUG=1', 'NDEBUG=null'
arguments "-j${threadsToUse}", 'NDK_LOG=1', 'NDK_DEBUG=1', 'NDEBUG=null', '--output-sync=none'
// arguments '-B', 'NDK_DEBUG=1', 'NDEBUG=null', 'NDK_LOG=1'
}
}

Loading…
Cancel
Save