-1
依存性「メディア」プラグインとして持っているカスタムCordovaプラグインを作成しました。カスタムCordovaプラグインiOS index.js dosentが私の.jsファイルを認識
"cordova plugin add" myPlugin "を実行すると、プラグインがサンプルプロジェクトにインストールされますが、index.jsにプラグインをインストールしようとすると、プラグインが認識されず、" Media "それはオブジェクトです。助けのための
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-MyPlugin"
version="1.0.0">
<name> MyPlugin </name>
<description>Cordova MyPlugin Plugin</description>
<author> MyPlugin </author>
<license>MIT</license>
<keywords> MyPlugin </keywords>
<dependency id="org.apache.cordova.media"/>
<js-module src="www/MyPlugin.js" name="MyPlugin">
<clobbers target="window.plugins.MyPlugin" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="MyPlugin">
<param name="ios-package" value="CDVMyPlugin" />
</feature>
</config-file>
<!-- Sources -->
<header-file src="src/ios/CDVMyPlugin.h"/>
<source-file src="src/ios/CDVMyPlugin.m"/>
<!-- iOS Frameworks -->
<framework src="libz.dylib" />
</platform>
</plugin>
ありがとう:
は、ここに私のプラグインの.xmlファイルです。