Skip to content

alexeyrassokhin/cordova-plugin-clipboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 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).

About

Clipboard management plugin for Cordova/PhoneGap

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 29.9%
  • Java 28.3%
  • C# 22.9%
  • Objective-C 18.9%