https://github.com/atsushieno/aap-juce-vital
port of Vi(t)al to Audio Plugins For Android (AAP)
https://github.com/atsushieno/aap-juce-vital
aap aap-juce android audio audio-plugin juce
Last synced: about 1 month ago
JSON representation
port of Vi(t)al to Audio Plugins For Android (AAP)
- Host: GitHub
- URL: https://github.com/atsushieno/aap-juce-vital
- Owner: atsushieno
- License: gpl-3.0
- Created: 2021-12-20T05:48:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-08T09:03:49.000Z (over 1 year ago)
- Last Synced: 2024-05-02T00:30:13.678Z (about 1 year ago)
- Topics: aap, aap-juce, android, audio, audio-plugin, juce
- Language: Makefile
- Homepage:
- Size: 274 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vitaloid
It is our port of [Vital](https://github.com/mtytel/vital) to [aap-juce](https://github.com/atsushieno/aap-juce). Since any unofficial builds must be named otherwise than "Vital", I call it "Vitaloid" so far.
(Note that the open source build of "Vial" - it is renamed from Vital in the official repo - contains no synth presets. We don't either. Even the Basic presets from the official distribution are non-free.)
## Development Status
The JUCE GUI is somewhat awkward; basically, reusing the desktop UI on mobile is not a good idea, and for Vital the UI is almost not controllable by fingers.

Some UI components are clipped, and anything that involved a file dialog on desktop could result in weird behavior or weird rendering.
Current build replaces vital's JUCE modules with JUCE 6.1.4, then patch the changes made in vital repo (explained at "Hacking" section).
## Building
There is a GitHub Actions setup that gives the normative build setup.
Once the environment is set up, `make` should take care of the entire build.
## Hacking
### Upgrading to JUCE to 6.1.4 (or any later versions)
vital comes with its own version of JUCE in `third_party/JUCE` which is based on some version around JUCE 6.0.5, stripping out any extraneous bits.
To make it possible to upgrade JUCE versions, first I created a diff between JUCE 6.0.5 and vital: https://gist.github.com/atsushieno/158b40759b01c7d70c60a682620277e9
If you want to use later versions of JUCE, you might want to first patch the diff above against the target JUCE tree, then copy the required modules into `third_party/JUCE/modules/`.
Note that there could be breaking changes that breaks vital builds. For example JUCE 6.1.0 broke build by requiring `using namespace juce::gl;` explicitly. (The change is in our `vitaloid-aap.patch` so that you don't have to worry about this particular breakage.)
## Licenses
aap-juce-vital is distributed under the GPLv3 license.
[mtytel/vital](https://github.com/mtytel/vital/) is distributed under the GPLv3 license.