├── .gitignore ├── README.md ├── gypdemo.gyp ├── hello-apk-with-jni ├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── gen │ └── com │ │ └── examplecode │ │ └── helloapk │ │ └── R.java ├── hello-apk-with-jni.gyp ├── hello_library_loader.cc ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── examplecode │ └── helloapk │ ├── Hello.java │ └── HelloApkActivity.java ├── hello-apk ├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── bin │ └── classes │ │ └── com │ │ └── examplecode │ │ └── helloapk │ │ ├── HelloApkActivity.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ └── R.class ├── gen │ └── com │ │ └── examplecode │ │ └── helloapk │ │ └── R.java ├── hello-apk.gyp ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── examplecode │ └── helloapk │ └── HelloApkActivity.java ├── hello-jar ├── .classpath ├── .project ├── hello-jar.gyp └── src │ └── com │ └── examplecode │ └── hellojar │ └── Hello.java ├── hello-jni ├── .classpath ├── .project ├── hello-jni.c ├── hello-jni.gyp ├── hello-jni.h ├── hello_jni_header.target.mk └── src │ └── com │ └── mx │ └── example │ └── hello_jni │ └── Hello.java ├── hello ├── hello.c ├── hello.gyp └── hello.h └── mylib-gyp ├── envsetup.sh ├── gyp-mac-tool ├── main ├── main.cc ├── mylib.cc ├── mylib.gyp └── mylib.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/README.md -------------------------------------------------------------------------------- /gypdemo.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/gypdemo.gyp -------------------------------------------------------------------------------- /hello-apk-with-jni/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/.classpath -------------------------------------------------------------------------------- /hello-apk-with-jni/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .class 3 | -------------------------------------------------------------------------------- /hello-apk-with-jni/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/.project -------------------------------------------------------------------------------- /hello-apk-with-jni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-apk-with-jni/gen/com/examplecode/helloapk/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/gen/com/examplecode/helloapk/R.java -------------------------------------------------------------------------------- /hello-apk-with-jni/hello-apk-with-jni.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/hello-apk-with-jni.gyp -------------------------------------------------------------------------------- /hello-apk-with-jni/hello_library_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/hello_library_loader.cc -------------------------------------------------------------------------------- /hello-apk-with-jni/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/proguard.cfg -------------------------------------------------------------------------------- /hello-apk-with-jni/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/project.properties -------------------------------------------------------------------------------- /hello-apk-with-jni/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk-with-jni/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk-with-jni/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk-with-jni/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/res/layout/main.xml -------------------------------------------------------------------------------- /hello-apk-with-jni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/res/values/strings.xml -------------------------------------------------------------------------------- /hello-apk-with-jni/src/com/examplecode/helloapk/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/src/com/examplecode/helloapk/Hello.java -------------------------------------------------------------------------------- /hello-apk-with-jni/src/com/examplecode/helloapk/HelloApkActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk-with-jni/src/com/examplecode/helloapk/HelloApkActivity.java -------------------------------------------------------------------------------- /hello-apk/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/.classpath -------------------------------------------------------------------------------- /hello-apk/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .class 3 | -------------------------------------------------------------------------------- /hello-apk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/.project -------------------------------------------------------------------------------- /hello-apk/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/HelloApkActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/HelloApkActivity.class -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/R$attr.class -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/R$drawable.class -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/R$layout.class -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/R$string.class -------------------------------------------------------------------------------- /hello-apk/bin/classes/com/examplecode/helloapk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/bin/classes/com/examplecode/helloapk/R.class -------------------------------------------------------------------------------- /hello-apk/gen/com/examplecode/helloapk/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/gen/com/examplecode/helloapk/R.java -------------------------------------------------------------------------------- /hello-apk/hello-apk.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/hello-apk.gyp -------------------------------------------------------------------------------- /hello-apk/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/proguard.cfg -------------------------------------------------------------------------------- /hello-apk/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/project.properties -------------------------------------------------------------------------------- /hello-apk/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-apk/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/res/layout/main.xml -------------------------------------------------------------------------------- /hello-apk/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/res/values/strings.xml -------------------------------------------------------------------------------- /hello-apk/src/com/examplecode/helloapk/HelloApkActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-apk/src/com/examplecode/helloapk/HelloApkActivity.java -------------------------------------------------------------------------------- /hello-jar/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jar/.classpath -------------------------------------------------------------------------------- /hello-jar/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jar/.project -------------------------------------------------------------------------------- /hello-jar/hello-jar.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jar/hello-jar.gyp -------------------------------------------------------------------------------- /hello-jar/src/com/examplecode/hellojar/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jar/src/com/examplecode/hellojar/Hello.java -------------------------------------------------------------------------------- /hello-jni/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/.classpath -------------------------------------------------------------------------------- /hello-jni/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/.project -------------------------------------------------------------------------------- /hello-jni/hello-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/hello-jni.c -------------------------------------------------------------------------------- /hello-jni/hello-jni.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/hello-jni.gyp -------------------------------------------------------------------------------- /hello-jni/hello-jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/hello-jni.h -------------------------------------------------------------------------------- /hello-jni/hello_jni_header.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/hello_jni_header.target.mk -------------------------------------------------------------------------------- /hello-jni/src/com/mx/example/hello_jni/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello-jni/src/com/mx/example/hello_jni/Hello.java -------------------------------------------------------------------------------- /hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello/hello.c -------------------------------------------------------------------------------- /hello/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello/hello.gyp -------------------------------------------------------------------------------- /hello/hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/hello/hello.h -------------------------------------------------------------------------------- /mylib-gyp/envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/envsetup.sh -------------------------------------------------------------------------------- /mylib-gyp/gyp-mac-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/gyp-mac-tool -------------------------------------------------------------------------------- /mylib-gyp/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/main -------------------------------------------------------------------------------- /mylib-gyp/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/main.cc -------------------------------------------------------------------------------- /mylib-gyp/mylib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/mylib.cc -------------------------------------------------------------------------------- /mylib-gyp/mylib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/mylib.gyp -------------------------------------------------------------------------------- /mylib-gyp/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/examplecode/gypdemo/HEAD/mylib-gyp/mylib.h --------------------------------------------------------------------------------