Has anyone actually managed to get Dexed to work as an MPE instrument? I am on an M1 laptop running Live 11 and have just tried playing the Dexed with a Sensel Morph. No luck. I mean, yes the notes are being triggered, but I cannot even get the pitchbend to work. Yes, MPE is on in dexed, pitchbend range is set to 96, and yes the settings on the Morph are correct.
For using Dexed with MOD-UI it must be an LV2 plugin. We have such plugin but it is not programable because all values are floats due to limitations to JUCE (used as backend for Dexed). Also the GUI is not necessary.
just to give a feedback:
I think I have understood how to create synth plugins for LV2. The key seems not to use lv2-c+tools, but lvtk. The last one has support for atomic-ports - this is the prot type used for MIDI data. The examples are working.
Good news! Thanks to Michael Fisher (mfi...@kushview.net, the man behind lvtoolkit library) I got the msfa engine (music-synthesizer-for-android) running as LV2 plugin! Currently without any parameter changes and only with a single DX-Rhodes sound - but stable working!
I am currently implementing the loading and changing of parameters via LV2 control. No need for GUI or bank loading. I have linked every internal DX-7 parameter to a LV2 control parameter, so you can start the plugin with a preset and you also can change parameters while running (e.g. connect it to a MIDI controller).
My project is a Meteor application that has web users and mobile users (on Android and iOS). The reason why I need to have native applications with Cordova is because I need to use a specific library (that have been coded for Android and iOS). I've developped a cordova-plugin that is a bridge between my Meteor app and my library. I add this cordova-plugin with the command meteor add cordova:plugin_name@bitbucket_url/get/commit_hash.tar.gz . And then I run my app with meteor run android-device --verbose to build it on my Nexus 5.
For anyone that has a similar issue, my problem was that this file had a dependency to support-v4 and I was not including it as a dependency in the plugin.xml of my cordova plugin. Thanks to Chris Stratton on that post NoClassDefFoundError at runtime but class is in classes.dex, what givies?
com.android.ide.common.internal.LoggedErrorException: Failed to run command: D:\DevTools\android-studio-intellij\sdk\build-tools\android-4.4.2\dx.bat --dex --output W:\intellij-android-projects\EXAMPLE\standard\build\libs\standard-debug.dex W:\intellij-android-projects\EXAMPLE\standard\build\classes\debug W:\intellij-android-projects\EXAMPLE\standard\build\dependency-cache\debug W:\intellij-android-projects\EXAMPLE\standard\build\pre-dexed\debug\android-support-v4-b111dc7043c3c79f72d7939f47909b3747170302.jar W:\intellij-android-projects\EXAMPLE\standard\build\pre-dexed\debug\classes-cd6929ed4c5651a3b535fb10f1d69394208e6d09.jar W:\intellij-android-projects\EXAMPLE\standard\build\pre-dexed\debug\google-play-services-806451f099bfcf85b10dd770cda9957922315e35.jar W:\intellij-android-projects\EXAMPLE\standard\build\pre-dexed\debug\support-v4-19.0.1-1f8b441cc636851c8231d692429070254dbba449.jar Error Code: 2 Output: UNEXPECTED TOP-LEVEL EXCEPTION: com.android.dex.DexException: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl; at com.android.dx.merge.DexMerger.readSortableTypes(DexMerger.java:594) at com.android.dx.merge.DexMerger.getSortedTypes(DexMerger.java:552) at com.android.dx.merge.DexMerger.mergeClassDefs(DexMerger.java:533) at com.android.dx.merge.DexMerger.mergeDexes(DexMerger.java:170) at com.android.dx.merge.DexMerger.merge(DexMerger.java:188) at com.android.dx.command.dexer.Main.mergeLibraryDexBuffers(Main.java:439) at com.android.dx.command.dexer.Main.runMonoDex(Main.java:287) at com.android.dx.command.dexer.Main.run(Main.java:230) at com.android.dx.command.dexer.Main.main(Main.java:199) at com.android.dx.command.Main.main(Main.java:103)
3a7c801d34