Java and Android porting of native Lua
Java and Android porting of native Lua
https://yappy.github.io/ajlua/
Official: https://www.lua.org/manual/5.3/
Unofficial Japanese: http://milkpot.sakura.ne.jp/lua/lua53_manual_ja.html
(Native part)
build/
will be ignored by git.$ mkdir build; cd build
native/
dir in this repository.$ cmake ../native
$ make install
($ make -j install
to speed up)(Native part test)
$ ctest
after make.$ ctest -V
for more datailed results.(Java part)
Gradle
but it will be automatically downloaded bygradlew
command. Of course you can use your own Gradle installed./java
dir in this repository.$ ./gradlew app
to start a sample application. (GUI needed)(Java part test)
$ ./gradlew test
to test the native and java library.CMake
and NDK
.Open an existing Android Studio project
or File
Open
./android
dir in this repository.Make
Make project
.app
dir is a sample application project. Run
Run 'app'
to run.