├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── opensles │ │ └── android │ │ └── fluidsynth │ │ └── fluidsynth_android_opensles │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── PNS Drum Kit.SF2 │ ├── cpp │ │ ├── fluidsynth │ │ │ ├── android │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── config.h │ │ │ │ ├── include │ │ │ │ │ └── fluidsynth │ │ │ │ │ │ └── version.h │ │ │ │ └── src │ │ │ │ │ ├── bindings │ │ │ │ │ └── fluid_cmd.c │ │ │ │ │ └── drivers │ │ │ │ │ ├── fluid_adriver.c │ │ │ │ │ └── fluid_mdriver.c │ │ │ ├── include │ │ │ │ ├── fluidsynth.cmake │ │ │ │ └── fluidsynth │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── gen.h │ │ │ │ │ ├── ladspa.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── midi.h │ │ │ │ │ ├── misc.h │ │ │ │ │ ├── mod.h │ │ │ │ │ ├── ramsfont.h │ │ │ │ │ ├── seq.h │ │ │ │ │ ├── seqbind.h │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── sfont.h │ │ │ │ │ ├── shell.h │ │ │ │ │ ├── synth.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── version.h.in │ │ │ │ │ └── voice.h │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bindings │ │ │ │ ├── fluid_cmd.c │ │ │ │ ├── fluid_cmd.h │ │ │ │ ├── fluid_filerenderer.c │ │ │ │ ├── fluid_ladspa.c │ │ │ │ ├── fluid_ladspa.h │ │ │ │ ├── fluid_lash.c │ │ │ │ ├── fluid_lash.h │ │ │ │ ├── fluid_rtkit.c │ │ │ │ └── fluid_rtkit.h │ │ │ │ ├── config.cmake │ │ │ │ ├── drivers │ │ │ │ ├── fluid_adriver.c │ │ │ │ ├── fluid_adriver.h │ │ │ │ ├── fluid_alsa.c │ │ │ │ ├── fluid_aufile.c │ │ │ │ ├── fluid_coreaudio.c │ │ │ │ ├── fluid_coremidi.c │ │ │ │ ├── fluid_dart.c │ │ │ │ ├── fluid_dsound.c │ │ │ │ ├── fluid_jack.c │ │ │ │ ├── fluid_mdriver.c │ │ │ │ ├── fluid_mdriver.h │ │ │ │ ├── fluid_midishare.c │ │ │ │ ├── fluid_opensles.c │ │ │ │ ├── fluid_oss.c │ │ │ │ ├── fluid_portaudio.c │ │ │ │ ├── fluid_pulse.c │ │ │ │ ├── fluid_sndmgr.c │ │ │ │ └── fluid_winmidi.c │ │ │ │ ├── fluidsynth.c │ │ │ │ ├── midi │ │ │ │ ├── fluid_midi.c │ │ │ │ ├── fluid_midi.h │ │ │ │ ├── fluid_midi_router.c │ │ │ │ ├── fluid_midi_router.h │ │ │ │ ├── fluid_seq.c │ │ │ │ └── fluid_seqbind.c │ │ │ │ ├── rvoice │ │ │ │ ├── fluid_adsr_env.c │ │ │ │ ├── fluid_adsr_env.h │ │ │ │ ├── fluid_chorus.c │ │ │ │ ├── fluid_chorus.h │ │ │ │ ├── fluid_iir_filter.c │ │ │ │ ├── fluid_iir_filter.h │ │ │ │ ├── fluid_lfo.c │ │ │ │ ├── fluid_lfo.h │ │ │ │ ├── fluid_phase.h │ │ │ │ ├── fluid_rev.c │ │ │ │ ├── fluid_rev.h │ │ │ │ ├── fluid_rvoice.c │ │ │ │ ├── fluid_rvoice.h │ │ │ │ ├── fluid_rvoice_dsp.c │ │ │ │ ├── fluid_rvoice_event.c │ │ │ │ ├── fluid_rvoice_event.h │ │ │ │ ├── fluid_rvoice_mixer.c │ │ │ │ └── fluid_rvoice_mixer.h │ │ │ │ ├── sfloader │ │ │ │ ├── fluid_defsfont.c │ │ │ │ ├── fluid_defsfont.h │ │ │ │ ├── fluid_ramsfont.c │ │ │ │ ├── fluid_ramsfont.h │ │ │ │ ├── fluid_sfont.c │ │ │ │ └── fluid_sfont.h │ │ │ │ ├── synth │ │ │ │ ├── fluid_chan.c │ │ │ │ ├── fluid_chan.h │ │ │ │ ├── fluid_event.c │ │ │ │ ├── fluid_event_priv.h │ │ │ │ ├── fluid_gen.c │ │ │ │ ├── fluid_gen.h │ │ │ │ ├── fluid_mod.c │ │ │ │ ├── fluid_mod.h │ │ │ │ ├── fluid_synth.c │ │ │ │ ├── fluid_synth.h │ │ │ │ ├── fluid_synth_monopoly.c │ │ │ │ ├── fluid_tuning.c │ │ │ │ ├── fluid_tuning.h │ │ │ │ ├── fluid_voice.c │ │ │ │ └── fluid_voice.h │ │ │ │ └── utils │ │ │ │ ├── fluid_atomic.h │ │ │ │ ├── fluid_conv.c │ │ │ │ ├── fluid_conv.h │ │ │ │ ├── fluid_hash.c │ │ │ │ ├── fluid_hash.h │ │ │ │ ├── fluid_list.c │ │ │ │ ├── fluid_list.h │ │ │ │ ├── fluid_ringbuffer.c │ │ │ │ ├── fluid_ringbuffer.h │ │ │ │ ├── fluid_settings.c │ │ │ │ ├── fluid_settings.h │ │ │ │ ├── fluid_sys.c │ │ │ │ ├── fluid_sys.h │ │ │ │ └── fluidsynth_priv.h │ │ └── native-lib.cpp │ ├── java │ │ └── opensles │ │ │ └── android │ │ │ └── fluidsynth │ │ │ └── fluidsynth_android_opensles │ │ │ ├── MainActivity.kt │ │ │ └── NativeLibJNI.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── opensles │ └── android │ └── fluidsynth │ └── fluidsynth_android_opensles │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/opensles/android/fluidsynth/fluidsynth_android_opensles/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/androidTest/java/opensles/android/fluidsynth/fluidsynth_android_opensles/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/PNS Drum Kit.SF2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/assets/PNS Drum Kit.SF2 -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/config.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/include/fluidsynth/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/include/fluidsynth/version.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/src/bindings/fluid_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/src/bindings/fluid_cmd.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/src/drivers/fluid_adriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/src/drivers/fluid_adriver.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/android/src/drivers/fluid_mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/android/src/drivers/fluid_mdriver.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/audio.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/event.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/gen.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/ladspa.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/log.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/midi.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/misc.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/mod.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/ramsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/ramsfont.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/seq.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/seqbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/seqbind.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/settings.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/sfont.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/shell.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/synth.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/types.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/version.h.in -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/include/fluidsynth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/include/fluidsynth/voice.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_cmd.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_cmd.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_filerenderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_filerenderer.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_ladspa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_ladspa.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_ladspa.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_lash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_lash.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_lash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_lash.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_rtkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_rtkit.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/bindings/fluid_rtkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/bindings/fluid_rtkit.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/config.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_adriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_adriver.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_adriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_adriver.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_alsa.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_aufile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_aufile.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_coreaudio.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_coremidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_coremidi.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_dart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_dart.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_dsound.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_jack.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_mdriver.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_mdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_mdriver.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_midishare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_midishare.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_opensles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_opensles.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_oss.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_portaudio.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_pulse.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_sndmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_sndmgr.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/drivers/fluid_winmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/drivers/fluid_winmidi.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/fluidsynth.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_midi.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_midi.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_midi_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_midi_router.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_midi_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_midi_router.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_seq.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/midi/fluid_seqbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/midi/fluid_seqbind.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_adsr_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_adsr_env.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_adsr_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_adsr_env.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_chorus.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_chorus.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_iir_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_iir_filter.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_iir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_iir_filter.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_lfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_lfo.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_lfo.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_phase.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rev.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rev.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_dsp.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_event.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_event.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_mixer.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/rvoice/fluid_rvoice_mixer.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_defsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_defsfont.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_defsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_defsfont.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_ramsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_ramsfont.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_ramsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_ramsfont.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_sfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_sfont.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/sfloader/fluid_sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/sfloader/fluid_sfont.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_chan.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_chan.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_event.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_event_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_event_priv.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_gen.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_gen.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_mod.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_mod.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_synth.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_synth.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_synth_monopoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_synth_monopoly.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_tuning.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_tuning.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_voice.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/synth/fluid_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/synth/fluid_voice.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_atomic.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_conv.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_conv.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_hash.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_hash.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_list.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_list.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_ringbuffer.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_ringbuffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_settings.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_settings.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_sys.c -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluid_sys.h -------------------------------------------------------------------------------- /app/src/main/cpp/fluidsynth/src/utils/fluidsynth_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/fluidsynth/src/utils/fluidsynth_priv.h -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/opensles/android/fluidsynth/fluidsynth_android_opensles/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/java/opensles/android/fluidsynth/fluidsynth_android_opensles/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/opensles/android/fluidsynth/fluidsynth_android_opensles/NativeLibJNI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/java/opensles/android/fluidsynth/fluidsynth_android_opensles/NativeLibJNI.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/opensles/android/fluidsynth/fluidsynth_android_opensles/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/app/src/test/java/opensles/android/fluidsynth/fluidsynth_android_opensles/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/degill/fluidsynth-android-opensles/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------