求助,自定义插件失败
我新建src www plugin.xml文件src中新建android文件并放入自定义插件
由于JS非本地调用所以www中没放东西
plugin.xml内容如下:
<?xmlversion=”1.0″ encoding=”UTF-8″?>
<pluginxmlns=”http://apache.org/cordova/ns/plugins/1.0″
id=”org.apache.cordova.myplugin”
version=”0.0.1″>
<name>PhoneGapPlugin</name>
<description>EchoPlugin</description>
<license>Apache 2.0</license>
<keywords>cordova,echo</keywords>
<js-module src=”www/echo.js”name=”echo”>
<clobbers target=”echo”/>
</js-module>
<!– android –>
<platform name=”android”>
<source-filesrc=”src/android/PhoneGapPlugin.java”target-dir=”src/org/apache/cordova/myplugin" />
<config-filetarget=”res/xml/config.xml” parent=”/*”>
<featurename=”PhoneGapPlugin”>
<paramname=”android-package”value=”org.apache.cordova.myplugin.PhoneGapPlugin”/>
</feature>
</config-file>
<config-filetarget=”AndroidManifest.xml” parent=”/*”>
<uses-permissionandroid:name=”android.permission.WRITE_EXTERNAL_STORAGE” />
</config-file>
</platform>
</plugin>
但控制台add的时候报
请问是什么原因
http://bbs.phonegap100.com/thread-1160-1-1.html
看看这个 我就是照这个例子做的。。
页:
[1]