├── .gitignore ├── HelloComputeNDK ├── AndroidManifest.xml ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── helloComputeNDK.cpp │ └── mono.rs ├── res │ ├── drawable-nodpi │ │ └── data.jpg │ └── layout │ │ └── main.xml └── src │ └── com │ └── example │ └── android │ └── rs │ └── hellocomputendk │ └── HelloComputeNDK.kt ├── MoreTeapots ├── AndroidManifest.xml ├── assets │ └── Shaders │ │ ├── ShaderPlain.fsh │ │ ├── ShaderPlainES3.fsh │ │ ├── VS_ShaderPlain.vsh │ │ └── VS_ShaderPlainES3.vsh ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── MoreTeapotsNativeActivity.cpp │ ├── MoreTeapotsRenderer.cpp │ ├── MoreTeapotsRenderer.h │ └── teapot.inl ├── lint.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── widgets.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── sample │ ├── helper │ └── NDKHelper.kt │ └── moreteapots │ ├── MoreTeapotsApplication.kt │ └── MoreTeapotsNativeActivity.kt ├── README.md ├── Teapot ├── AndroidManifest.xml ├── assets │ └── Shaders │ │ ├── ShaderPlain.fsh │ │ └── VS_ShaderPlain.vsh ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── TeapotNativeActivity.cpp │ ├── TeapotRenderer.cpp │ ├── TeapotRenderer.h │ └── teapot.inl ├── lint.xml ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── widgets.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── sample │ ├── helper │ └── NDKHelper.kt │ └── teapot │ ├── TeapotApplication.kt │ └── TeapotNativeActivity.kt ├── bitmap-plasma ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── plasma.c ├── res │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── plasma │ └── Plasma.kt ├── gles3jni ├── AndroidManifest-11.xml ├── AndroidManifest-18.xml ├── README ├── jni │ ├── Android-11.mk │ ├── Android-18.mk │ ├── Application.mk │ ├── RendererES2.cpp │ ├── RendererES3.cpp │ ├── gl3stub.c │ ├── gl3stub.h │ ├── gles3jni.cpp │ └── gles3jni.h ├── res │ └── values │ │ └── strings.xml └── src │ └── com │ └── android │ └── gles3jni │ ├── GLES3JNIActivity.kt │ ├── GLES3JNILib.kt │ └── GLES3JNIView.kt ├── hello-gl2 ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── gl_code.cpp ├── res │ └── values │ │ └── strings.xml └── src │ └── com │ └── android │ └── gl2jni │ ├── GL2JNIActivity.kt │ ├── GL2JNILib.kt │ └── GL2JNIView.kt ├── hello-jni ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── hello-jni.c ├── res │ └── values │ │ └── strings.xml ├── src │ └── com │ │ └── example │ │ └── hellojni │ │ └── HelloJni.kt └── tests │ ├── AndroidManifest.xml │ ├── default.properties │ └── src │ └── com │ └── example │ └── hellojni │ └── HelloJniTest.kt ├── hello-neon ├── AndroidManifest.xml ├── build.properties ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── helloneon-intrinsics.c │ ├── helloneon-intrinsics.h │ └── helloneon.c ├── res │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── neon │ └── HelloNeon.kt ├── module-exports ├── README.TXT └── jni │ ├── Android.mk │ ├── Application.mk │ ├── bar │ ├── bar.c │ └── bar.h │ ├── foo │ ├── foo.c │ └── foo.h │ └── zoo │ └── zoo.c ├── native-activity ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── main.c └── res │ └── values │ └── strings.xml ├── native-audio ├── AndroidManifest.xml ├── assets │ ├── README.txt │ └── background.mp3 ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── android_clip.h │ ├── hello_clip.h │ └── native-audio-jni.c ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── nativeaudio │ └── NativeAudio.kt ├── native-codec ├── AndroidManifest.xml ├── README.txt ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── looper.cpp │ ├── looper.h │ └── native-codec-jni.cpp ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml ├── src │ └── com │ │ └── example │ │ └── nativecodec │ │ ├── MyGLSurfaceView.kt │ │ └── NativeCodec.kt └── testfile.mp4 ├── native-media ├── AndroidManifest.xml ├── NativeMedia.ts ├── README.txt ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── native-media-jni.c ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── nativemedia │ ├── MyGLSurfaceView.kt │ └── NativeMedia.kt ├── native-plasma ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ └── plasma.c └── res │ └── values │ └── strings.xml ├── san-angeles ├── AndroidManifest.xml ├── default.properties ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── README.txt │ ├── app-android.c │ ├── app-linux.c │ ├── app-win32.c │ ├── app.h │ ├── cams.h │ ├── demo.c │ ├── importgl.c │ ├── importgl.h │ ├── license-BSD.txt │ ├── license-LGPL.txt │ ├── license.txt │ └── shapes.h ├── res │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── SanAngeles │ └── DemoActivity.kt ├── test-libstdc++ └── jni │ ├── Android.mk │ ├── Application.mk │ └── test-libstl.cpp └── two-libs ├── AndroidManifest.xml ├── default.properties ├── jni ├── Android.mk ├── Application.mk ├── first.c ├── first.h └── second.c ├── res └── values │ └── strings.xml ├── src └── com │ └── example │ └── twolibs │ └── TwoLibs.kt └── tests ├── AndroidManifest.xml ├── default.properties └── src └── com └── example └── twolibs └── TwoLibsTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /HelloComputeNDK/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/AndroidManifest.xml -------------------------------------------------------------------------------- /HelloComputeNDK/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/jni/Android.mk -------------------------------------------------------------------------------- /HelloComputeNDK/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/jni/Application.mk -------------------------------------------------------------------------------- /HelloComputeNDK/jni/helloComputeNDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/jni/helloComputeNDK.cpp -------------------------------------------------------------------------------- /HelloComputeNDK/jni/mono.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/jni/mono.rs -------------------------------------------------------------------------------- /HelloComputeNDK/res/drawable-nodpi/data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/res/drawable-nodpi/data.jpg -------------------------------------------------------------------------------- /HelloComputeNDK/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/res/layout/main.xml -------------------------------------------------------------------------------- /HelloComputeNDK/src/com/example/android/rs/hellocomputendk/HelloComputeNDK.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/HelloComputeNDK.kt -------------------------------------------------------------------------------- /MoreTeapots/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/AndroidManifest.xml -------------------------------------------------------------------------------- /MoreTeapots/assets/Shaders/ShaderPlain.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/assets/Shaders/ShaderPlain.fsh -------------------------------------------------------------------------------- /MoreTeapots/assets/Shaders/ShaderPlainES3.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/assets/Shaders/ShaderPlainES3.fsh -------------------------------------------------------------------------------- /MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh -------------------------------------------------------------------------------- /MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh -------------------------------------------------------------------------------- /MoreTeapots/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/Android.mk -------------------------------------------------------------------------------- /MoreTeapots/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/Application.mk -------------------------------------------------------------------------------- /MoreTeapots/jni/MoreTeapotsNativeActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/MoreTeapotsNativeActivity.cpp -------------------------------------------------------------------------------- /MoreTeapots/jni/MoreTeapotsRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/MoreTeapotsRenderer.cpp -------------------------------------------------------------------------------- /MoreTeapots/jni/MoreTeapotsRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/MoreTeapotsRenderer.h -------------------------------------------------------------------------------- /MoreTeapots/jni/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/jni/teapot.inl -------------------------------------------------------------------------------- /MoreTeapots/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/lint.xml -------------------------------------------------------------------------------- /MoreTeapots/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/project.properties -------------------------------------------------------------------------------- /MoreTeapots/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoreTeapots/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /MoreTeapots/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoreTeapots/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MoreTeapots/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/layout/widgets.xml -------------------------------------------------------------------------------- /MoreTeapots/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/values-v11/styles.xml -------------------------------------------------------------------------------- /MoreTeapots/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/values-v14/styles.xml -------------------------------------------------------------------------------- /MoreTeapots/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/values/strings.xml -------------------------------------------------------------------------------- /MoreTeapots/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/res/values/styles.xml -------------------------------------------------------------------------------- /MoreTeapots/src/com/sample/helper/NDKHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/src/com/sample/helper/NDKHelper.kt -------------------------------------------------------------------------------- /MoreTeapots/src/com/sample/moreteapots/MoreTeapotsApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/src/com/sample/moreteapots/MoreTeapotsApplication.kt -------------------------------------------------------------------------------- /MoreTeapots/src/com/sample/moreteapots/MoreTeapotsNativeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/MoreTeapots/src/com/sample/moreteapots/MoreTeapotsNativeActivity.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/README.md -------------------------------------------------------------------------------- /Teapot/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/AndroidManifest.xml -------------------------------------------------------------------------------- /Teapot/assets/Shaders/ShaderPlain.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/assets/Shaders/ShaderPlain.fsh -------------------------------------------------------------------------------- /Teapot/assets/Shaders/VS_ShaderPlain.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/assets/Shaders/VS_ShaderPlain.vsh -------------------------------------------------------------------------------- /Teapot/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/Android.mk -------------------------------------------------------------------------------- /Teapot/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/Application.mk -------------------------------------------------------------------------------- /Teapot/jni/TeapotNativeActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/TeapotNativeActivity.cpp -------------------------------------------------------------------------------- /Teapot/jni/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/TeapotRenderer.cpp -------------------------------------------------------------------------------- /Teapot/jni/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/TeapotRenderer.h -------------------------------------------------------------------------------- /Teapot/jni/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/jni/teapot.inl -------------------------------------------------------------------------------- /Teapot/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/lint.xml -------------------------------------------------------------------------------- /Teapot/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/project.properties -------------------------------------------------------------------------------- /Teapot/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Teapot/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Teapot/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Teapot/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Teapot/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/layout/widgets.xml -------------------------------------------------------------------------------- /Teapot/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/values-v11/styles.xml -------------------------------------------------------------------------------- /Teapot/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/values-v14/styles.xml -------------------------------------------------------------------------------- /Teapot/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/values/strings.xml -------------------------------------------------------------------------------- /Teapot/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/res/values/styles.xml -------------------------------------------------------------------------------- /Teapot/src/com/sample/helper/NDKHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/src/com/sample/helper/NDKHelper.kt -------------------------------------------------------------------------------- /Teapot/src/com/sample/teapot/TeapotApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/src/com/sample/teapot/TeapotApplication.kt -------------------------------------------------------------------------------- /Teapot/src/com/sample/teapot/TeapotNativeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/Teapot/src/com/sample/teapot/TeapotNativeActivity.kt -------------------------------------------------------------------------------- /bitmap-plasma/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/AndroidManifest.xml -------------------------------------------------------------------------------- /bitmap-plasma/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/default.properties -------------------------------------------------------------------------------- /bitmap-plasma/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/jni/Android.mk -------------------------------------------------------------------------------- /bitmap-plasma/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/jni/Application.mk -------------------------------------------------------------------------------- /bitmap-plasma/jni/plasma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/jni/plasma.c -------------------------------------------------------------------------------- /bitmap-plasma/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/res/values/strings.xml -------------------------------------------------------------------------------- /bitmap-plasma/src/com/example/plasma/Plasma.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/bitmap-plasma/src/com/example/plasma/Plasma.kt -------------------------------------------------------------------------------- /gles3jni/AndroidManifest-11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/AndroidManifest-11.xml -------------------------------------------------------------------------------- /gles3jni/AndroidManifest-18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/AndroidManifest-18.xml -------------------------------------------------------------------------------- /gles3jni/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/README -------------------------------------------------------------------------------- /gles3jni/jni/Android-11.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/Android-11.mk -------------------------------------------------------------------------------- /gles3jni/jni/Android-18.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/Android-18.mk -------------------------------------------------------------------------------- /gles3jni/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /gles3jni/jni/RendererES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/RendererES2.cpp -------------------------------------------------------------------------------- /gles3jni/jni/RendererES3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/RendererES3.cpp -------------------------------------------------------------------------------- /gles3jni/jni/gl3stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/gl3stub.c -------------------------------------------------------------------------------- /gles3jni/jni/gl3stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/gl3stub.h -------------------------------------------------------------------------------- /gles3jni/jni/gles3jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/gles3jni.cpp -------------------------------------------------------------------------------- /gles3jni/jni/gles3jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/jni/gles3jni.h -------------------------------------------------------------------------------- /gles3jni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/res/values/strings.xml -------------------------------------------------------------------------------- /gles3jni/src/com/android/gles3jni/GLES3JNIActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/src/com/android/gles3jni/GLES3JNIActivity.kt -------------------------------------------------------------------------------- /gles3jni/src/com/android/gles3jni/GLES3JNILib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/src/com/android/gles3jni/GLES3JNILib.kt -------------------------------------------------------------------------------- /gles3jni/src/com/android/gles3jni/GLES3JNIView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/gles3jni/src/com/android/gles3jni/GLES3JNIView.kt -------------------------------------------------------------------------------- /hello-gl2/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-gl2/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/default.properties -------------------------------------------------------------------------------- /hello-gl2/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/jni/Android.mk -------------------------------------------------------------------------------- /hello-gl2/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /hello-gl2/jni/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/jni/gl_code.cpp -------------------------------------------------------------------------------- /hello-gl2/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/res/values/strings.xml -------------------------------------------------------------------------------- /hello-gl2/src/com/android/gl2jni/GL2JNIActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/src/com/android/gl2jni/GL2JNIActivity.kt -------------------------------------------------------------------------------- /hello-gl2/src/com/android/gl2jni/GL2JNILib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/src/com/android/gl2jni/GL2JNILib.kt -------------------------------------------------------------------------------- /hello-gl2/src/com/android/gl2jni/GL2JNIView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-gl2/src/com/android/gl2jni/GL2JNIView.kt -------------------------------------------------------------------------------- /hello-jni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-jni/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/default.properties -------------------------------------------------------------------------------- /hello-jni/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/jni/Android.mk -------------------------------------------------------------------------------- /hello-jni/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /hello-jni/jni/hello-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/jni/hello-jni.c -------------------------------------------------------------------------------- /hello-jni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/res/values/strings.xml -------------------------------------------------------------------------------- /hello-jni/src/com/example/hellojni/HelloJni.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/src/com/example/hellojni/HelloJni.kt -------------------------------------------------------------------------------- /hello-jni/tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-jni/tests/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/tests/default.properties -------------------------------------------------------------------------------- /hello-jni/tests/src/com/example/hellojni/HelloJniTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-jni/tests/src/com/example/hellojni/HelloJniTest.kt -------------------------------------------------------------------------------- /hello-neon/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-neon/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/build.properties -------------------------------------------------------------------------------- /hello-neon/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/default.properties -------------------------------------------------------------------------------- /hello-neon/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/jni/Android.mk -------------------------------------------------------------------------------- /hello-neon/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/jni/Application.mk -------------------------------------------------------------------------------- /hello-neon/jni/helloneon-intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/jni/helloneon-intrinsics.c -------------------------------------------------------------------------------- /hello-neon/jni/helloneon-intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/jni/helloneon-intrinsics.h -------------------------------------------------------------------------------- /hello-neon/jni/helloneon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/jni/helloneon.c -------------------------------------------------------------------------------- /hello-neon/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/res/values/strings.xml -------------------------------------------------------------------------------- /hello-neon/src/com/example/neon/HelloNeon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/hello-neon/src/com/example/neon/HelloNeon.kt -------------------------------------------------------------------------------- /module-exports/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/README.TXT -------------------------------------------------------------------------------- /module-exports/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/Android.mk -------------------------------------------------------------------------------- /module-exports/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /module-exports/jni/bar/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/bar/bar.c -------------------------------------------------------------------------------- /module-exports/jni/bar/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/bar/bar.h -------------------------------------------------------------------------------- /module-exports/jni/foo/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/foo/foo.c -------------------------------------------------------------------------------- /module-exports/jni/foo/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/foo/foo.h -------------------------------------------------------------------------------- /module-exports/jni/zoo/zoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/module-exports/jni/zoo/zoo.c -------------------------------------------------------------------------------- /native-activity/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/AndroidManifest.xml -------------------------------------------------------------------------------- /native-activity/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/default.properties -------------------------------------------------------------------------------- /native-activity/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/jni/Android.mk -------------------------------------------------------------------------------- /native-activity/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/jni/Application.mk -------------------------------------------------------------------------------- /native-activity/jni/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/jni/main.c -------------------------------------------------------------------------------- /native-activity/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-activity/res/values/strings.xml -------------------------------------------------------------------------------- /native-audio/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/AndroidManifest.xml -------------------------------------------------------------------------------- /native-audio/assets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/assets/README.txt -------------------------------------------------------------------------------- /native-audio/assets/background.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/assets/background.mp3 -------------------------------------------------------------------------------- /native-audio/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/default.properties -------------------------------------------------------------------------------- /native-audio/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/jni/Android.mk -------------------------------------------------------------------------------- /native-audio/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /native-audio/jni/android_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/jni/android_clip.h -------------------------------------------------------------------------------- /native-audio/jni/hello_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/jni/hello_clip.h -------------------------------------------------------------------------------- /native-audio/jni/native-audio-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/jni/native-audio-jni.c -------------------------------------------------------------------------------- /native-audio/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/res/drawable/icon.png -------------------------------------------------------------------------------- /native-audio/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/res/layout/main.xml -------------------------------------------------------------------------------- /native-audio/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/res/values/strings.xml -------------------------------------------------------------------------------- /native-audio/src/com/example/nativeaudio/NativeAudio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-audio/src/com/example/nativeaudio/NativeAudio.kt -------------------------------------------------------------------------------- /native-codec/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/AndroidManifest.xml -------------------------------------------------------------------------------- /native-codec/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/README.txt -------------------------------------------------------------------------------- /native-codec/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/default.properties -------------------------------------------------------------------------------- /native-codec/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/jni/Android.mk -------------------------------------------------------------------------------- /native-codec/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/jni/Application.mk -------------------------------------------------------------------------------- /native-codec/jni/looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/jni/looper.cpp -------------------------------------------------------------------------------- /native-codec/jni/looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/jni/looper.h -------------------------------------------------------------------------------- /native-codec/jni/native-codec-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/jni/native-codec-jni.cpp -------------------------------------------------------------------------------- /native-codec/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/res/drawable/icon.png -------------------------------------------------------------------------------- /native-codec/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/res/layout/main.xml -------------------------------------------------------------------------------- /native-codec/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/res/values/strings.xml -------------------------------------------------------------------------------- /native-codec/src/com/example/nativecodec/MyGLSurfaceView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/src/com/example/nativecodec/MyGLSurfaceView.kt -------------------------------------------------------------------------------- /native-codec/src/com/example/nativecodec/NativeCodec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/src/com/example/nativecodec/NativeCodec.kt -------------------------------------------------------------------------------- /native-codec/testfile.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-codec/testfile.mp4 -------------------------------------------------------------------------------- /native-media/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/AndroidManifest.xml -------------------------------------------------------------------------------- /native-media/NativeMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/NativeMedia.ts -------------------------------------------------------------------------------- /native-media/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/README.txt -------------------------------------------------------------------------------- /native-media/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/default.properties -------------------------------------------------------------------------------- /native-media/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/jni/Android.mk -------------------------------------------------------------------------------- /native-media/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /native-media/jni/native-media-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/jni/native-media-jni.c -------------------------------------------------------------------------------- /native-media/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/res/drawable/icon.png -------------------------------------------------------------------------------- /native-media/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/res/layout/main.xml -------------------------------------------------------------------------------- /native-media/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/res/values/strings.xml -------------------------------------------------------------------------------- /native-media/src/com/example/nativemedia/MyGLSurfaceView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/src/com/example/nativemedia/MyGLSurfaceView.kt -------------------------------------------------------------------------------- /native-media/src/com/example/nativemedia/NativeMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-media/src/com/example/nativemedia/NativeMedia.kt -------------------------------------------------------------------------------- /native-plasma/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/AndroidManifest.xml -------------------------------------------------------------------------------- /native-plasma/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/default.properties -------------------------------------------------------------------------------- /native-plasma/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/jni/Android.mk -------------------------------------------------------------------------------- /native-plasma/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/jni/Application.mk -------------------------------------------------------------------------------- /native-plasma/jni/plasma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/jni/plasma.c -------------------------------------------------------------------------------- /native-plasma/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/native-plasma/res/values/strings.xml -------------------------------------------------------------------------------- /san-angeles/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/AndroidManifest.xml -------------------------------------------------------------------------------- /san-angeles/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/default.properties -------------------------------------------------------------------------------- /san-angeles/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/Android.mk -------------------------------------------------------------------------------- /san-angeles/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /san-angeles/jni/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/README.txt -------------------------------------------------------------------------------- /san-angeles/jni/app-android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/app-android.c -------------------------------------------------------------------------------- /san-angeles/jni/app-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/app-linux.c -------------------------------------------------------------------------------- /san-angeles/jni/app-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/app-win32.c -------------------------------------------------------------------------------- /san-angeles/jni/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/app.h -------------------------------------------------------------------------------- /san-angeles/jni/cams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/cams.h -------------------------------------------------------------------------------- /san-angeles/jni/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/demo.c -------------------------------------------------------------------------------- /san-angeles/jni/importgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/importgl.c -------------------------------------------------------------------------------- /san-angeles/jni/importgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/importgl.h -------------------------------------------------------------------------------- /san-angeles/jni/license-BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/license-BSD.txt -------------------------------------------------------------------------------- /san-angeles/jni/license-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/license-LGPL.txt -------------------------------------------------------------------------------- /san-angeles/jni/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/license.txt -------------------------------------------------------------------------------- /san-angeles/jni/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/jni/shapes.h -------------------------------------------------------------------------------- /san-angeles/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/res/layout/main.xml -------------------------------------------------------------------------------- /san-angeles/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/res/values/strings.xml -------------------------------------------------------------------------------- /san-angeles/src/com/example/SanAngeles/DemoActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/san-angeles/src/com/example/SanAngeles/DemoActivity.kt -------------------------------------------------------------------------------- /test-libstdc++/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/test-libstdc++/jni/Android.mk -------------------------------------------------------------------------------- /test-libstdc++/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /test-libstdc++/jni/test-libstl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/test-libstdc++/jni/test-libstl.cpp -------------------------------------------------------------------------------- /two-libs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/AndroidManifest.xml -------------------------------------------------------------------------------- /two-libs/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/default.properties -------------------------------------------------------------------------------- /two-libs/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/jni/Android.mk -------------------------------------------------------------------------------- /two-libs/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /two-libs/jni/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/jni/first.c -------------------------------------------------------------------------------- /two-libs/jni/first.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/jni/first.h -------------------------------------------------------------------------------- /two-libs/jni/second.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/jni/second.c -------------------------------------------------------------------------------- /two-libs/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/res/values/strings.xml -------------------------------------------------------------------------------- /two-libs/src/com/example/twolibs/TwoLibs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/src/com/example/twolibs/TwoLibs.kt -------------------------------------------------------------------------------- /two-libs/tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /two-libs/tests/default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/tests/default.properties -------------------------------------------------------------------------------- /two-libs/tests/src/com/example/twolibs/TwoLibsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ligee/kotlin-ndk-samples/HEAD/two-libs/tests/src/com/example/twolibs/TwoLibsTest.java --------------------------------------------------------------------------------