You've already forked mattlution
'初始化提交'
This commit is contained in:
59
plugins/com.verso.cordova.clipboard/plugin.xml
Normal file
59
plugins/com.verso.cordova.clipboard/plugin.xml
Normal file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
id="com.verso.cordova.clipboard"
|
||||
version="0.1.0">
|
||||
|
||||
<engines>
|
||||
<engine name="cordova" version=">=3.0.0" />
|
||||
</engines>
|
||||
|
||||
<name>Clipboard</name>
|
||||
|
||||
<description>Clipboard management plugin for Cordova/PhoneGap</description>
|
||||
|
||||
<author>Verso Solutions LLC</author>
|
||||
|
||||
<keywords>clipboard,copy,paste</keywords>
|
||||
|
||||
<license>MIT</license>
|
||||
|
||||
<js-module src="www/clipboard.js" name="Clipboard">
|
||||
<clobbers target="cordova.plugins.clipboard" />
|
||||
</js-module>
|
||||
|
||||
<!-- iOS -->
|
||||
<platform name="ios">
|
||||
<config-file target="config.xml" parent="/*">
|
||||
<feature name="Clipboard">
|
||||
<param name="ios-package" value="CDVClipboard" />
|
||||
</feature>
|
||||
</config-file>
|
||||
|
||||
<header-file src="src/ios/CDVClipboard.h" />
|
||||
<source-file src="src/ios/CDVClipboard.m" />
|
||||
</platform>
|
||||
|
||||
<!-- Android -->
|
||||
<platform name="android">
|
||||
<source-file src="src/android/Clipboard.java" target-dir="src/com/verso/cordova/clipboard" />
|
||||
|
||||
<config-file target="res/xml/config.xml" parent="/*">
|
||||
<feature name="Clipboard">
|
||||
<param name="android-package" value="com.verso.cordova.clipboard.Clipboard" />
|
||||
</feature>
|
||||
</config-file>
|
||||
</platform>
|
||||
|
||||
<!-- Windows Phone 8 -->
|
||||
<platform name="wp8">
|
||||
<config-file target="config.xml" parent="/*">
|
||||
<feature name="Clipboard">
|
||||
<param name="wp-package" value="Clipboard"/>
|
||||
</feature>
|
||||
</config-file>
|
||||
|
||||
<source-file src="src/wp8/Clipboard.cs" />
|
||||
</platform>
|
||||
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user