9 lines
215 B
Bash
Executable file
9 lines
215 B
Bash
Executable file
#!/bin/sh
|
|
pushd "$(dirname "$0")"
|
|
cd sdl-android-project
|
|
ln -fs "$(dirname "$(pwd)")" ./app/jni
|
|
#android update project --name looper --path . --target "$ANDROID_PLATFORM"
|
|
./gradlew build
|
|
popd
|
|
|
|
#cp bin/*.so ../andr
|