danielsogl-cordova-plugin-clipboard

1.0.2 • Public • Published

Clipboard

Clipboard management plugin for Cordova/PhoneGap that supports iOS, Android, Windows, and Windows Phone 8.

Usage

Install the plugin using the CLI, for instance with PhoneGap:

phonegap local plugin add https://github.com/danielsogl/cordova-plugin-clipboard

The plugin creates the object cordova.plugins.clipboard with the methods copy(text, onSuccess, onError) and paste(onSuccess, onError).

Example:

var text = "Hello World!";

cordova.plugins.clipboard.copy(text);

cordova.plugins.clipboard.paste(function (text) { alert(text); });

Notes

All platforms

  • The plugin only works with text content.

Windows Phone

  • The Windows Phone platform doesn't allow applications to read the content of the clipboard. Using the paste method will return an error.

Android

  • The minimum supported API Level is 11. Make sure that minSdkVersion is larger or equal to 11 in AndroidManifest.xml.

Acknowledgements

This plugin was inspired by ClipboardManagerPlugin (Android) and ClipboardPlugin (iOS).

Package Sidebar

Install

npm i danielsogl-cordova-plugin-clipboard

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • danielsogl