[View] [Edit] [Lock] [References] [Attachments] [History] [Home] [Changes] [Search] [Help]
[m8n] Löve - How to build U8 host app for Android
After fullfiling the steps you can open the project with Android Studio and generate APK |
Remainder: to publish an app on Google Play you need to set up Gradle for API 26 |
Comments
- Get Löve Android Studio project template with Löve newer version 11,1,0 (Mysterious Mysteries) here
Possible issues:
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:
...
#APP_ABI := armeabi armeabi-v7a
APP_ABI := armeabi-v7a
...
More details about this issue can be found here