├── .gitignore ├── .gitmodules ├── Dockerfile ├── Makefile ├── README.md ├── cloudbuild.yaml ├── custom.cbc ├── dso_handle.c ├── jni ├── Android.mk └── Application.mk ├── rewrite-binary.sh └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | build 3 | libs 4 | dso_handle.o 5 | libfluidsynth.so 6 | 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/README.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /custom.cbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/custom.cbc -------------------------------------------------------------------------------- /dso_handle.c: -------------------------------------------------------------------------------- 1 | 2 | extern "C" { 3 | void *__dso_handle = 0; 4 | } 5 | -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi-v7a x86 2 | NDK_TOOLCHAIN_VERSION := 4.9 3 | -------------------------------------------------------------------------------- /rewrite-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/rewrite-binary.sh -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsushieno/android-fluidsynth/HEAD/wercker.yml --------------------------------------------------------------------------------