error: use of undeclared indentifier 'posix_memalign'To solve this issue: change minSdkVersion from 14 to 16, in build.gradle for modules: app and love. |
When generating signed APK, if Deprecated ABI armeabi (a.k.a. not supported Thumb mode `vmrs r3,fpscr')apply the following in Android project to workaround this issue: #remove armeabi from love build.gradle (Module: love) script: ndk { // Specifies the ABI configurations of your native // libraries Gradle should build and package with your APK. // abiFilters 'armeabi-v7a', 'armeabi' abiFilters 'armeabi-v7a' } #remove armeabi from APP_ABI in Application.mk (External Build Files): ... #APP_ABI := armeabi armeabi-v7a APP_ABI := armeabi-v7a ...More details about this issue can be found here |