This is a port of potator emu for android. Potator is a watara supervision emulator in SDL.
- https://github.com/OpenEmu/Potator-Core
- http://en.wildservices.net/2013/10/making-libsdl-2-apps-on-android.html
- http://libsdl.org
- http://supermariowar-android.googlecode.com/
To build this project there are 2 prerequisites
- NDK https://developer.android.com/ndk/downloads/index.html
- SDL sources http://libsdl.org/download-2.0.php#source
- place the
SDLfolder in a sibling directory of theandroid-project, e.g. insideSuperVisionEmu - check
jni/src/Application.mkand make sure theNDK_MODULE_PATHvariable exists and points to theSDLdirectory. We are doing the called static linking to SDL library, see theBuild an app with static linking of libSDLparagraph ofreadme-androidinside theSDLdirectory. - run
ndk-buildfrom a command line inside theandroid-projectdirectory - after build is finished, a file
libmain.soshould be present inside thelibs\armeabi-xxxdirectory. - execute the gradle build task, take the
apkproduced from theoutputdirectory and install it on your android device.