dogtwelve / eepp

Automatically exported from code.google.com/p/eepp
0 stars 0 forks source link

i run compile.sh in cygwin error #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
$ ./compile.sh
./compile.sh: line 4: ndk-build: command not found
./compile.sh: line 6: ant: command not found
can't find 'bin/EEPPApp-debug.apk' to install
./compile.sh: line 8: ndk-gdb: command not found

the comlie.sh is 

#!/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

please tell me where is wrong or how to build

Original issue reported on code.google.com by zhudong....@gmail.com on 9 May 2013 at 11:39

GoogleCodeExporter commented 9 years ago
Sorry, but the script is for Linux environment. The android Makefiles should 
work for Windows too, but you'll need to run the ndk-build manually ( first 
install android SDK and NDK). I've never compiled que Android version from 
Windows, so i really can't help you much. It should be really similar to that 
script. Any guide to compile NDK projects should help you with this.

Original comment by spart...@gmail.com on 9 May 2013 at 1:47

GoogleCodeExporter commented 9 years ago
thank you ! i have resolved it;

Original comment by zhudong....@gmail.com on 13 May 2013 at 6:05

GoogleCodeExporter commented 9 years ago

Original comment by spart...@gmail.com on 13 May 2013 at 1:07