UNPKG

cordova-plugin-midi-sender

Version:
40 lines (32 loc) 1.45 kB
<?xml version="1.0" encoding="UTF-8" ?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-midi-sender" version="0.1.2"> <name>MIDISender</name> <description>Send and Receive MIDI messages through attached interfaces</description> <license>Apache 2.0</license> <keywords>MIDI,coreaudio,program,change</keywords> <repo>https://github.com/josiaho/cordova-plugin-midi-sender.git</repo> <issue>https://github.com/josiaho/cordova-plugin-midi-sender/issues</issue> <license>MIT</license> <author>Josiah Oslund</author> <engines> <!-- Cordova 9.0.0 is all I have tested on - it should work fine with earlier versions. Please modify the below line, test, and submit a PR if it works for you. --> <engine name="cordova-ios" version=">=3.0.0" /> </engines> <js-module src="www/midisender.js" name="midisender"> <clobbers target="cordova.plugins.MIDISender" /> </js-module> <!-- ios --> <platform name="ios"> <config-file target="config.xml" parent="/*"> <feature name="MIDISender"> <param name="ios-package" value="MIDISender" onload="true" /> </feature> </config-file> <header-file src="src/ios/MIDISender.h" /> <source-file src="src/ios/MIDISender.m" /> <framework src="CoreMIDI.framework" /> </platform> </plugin>