mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
Now header files are inside the include folder, and the source files inside src. Moved the projects files inside a projects folder. Precompiled static libs will be inside libs folder.
9 lines
167 B
Bash
Executable File
9 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
cd $(dirname "$0")
|
|
export NDK_PROJECT_PATH=$(dirname "$0")
|
|
ndk-build -j4
|
|
rm -rf ./bin
|
|
ant debug
|
|
adb install -r bin/EEPPApp-debug.apk
|
|
ndk-gdb --force --start
|