Skip to content

PhoneGap plugin for general utility functions to access information from the native OS.

License

Notifications You must be signed in to change notification settings

wcwynn/phonegap-plugin-wizUtils

 
 

Repository files navigation

PLUGIN:

phonegap-plugin-wizUtils phonegap version : 1.7
last update : 10/05/2012

DESCRIPTION :

PhoneGap plugin for general utility functions to access information from the native OS.




# EXAMPLE CODE : #

Get App File Name

wizUtils.getAppFileName(Function success);
* returns String eg. "game.app"(iOS) or "game.apk" (Android)

Get Bundle Version

wizUtils.getBundleVersion(Function success); 
* returns String eg. "1.0.0"

Get Bundle Display Name

wizUtils.getBundleDisplayName(Function success); 
* returns String eg. "bundleDisplayName" ''

Get Bundle Identifier

wizUtils.getBundleIdentifier(Function success);
* returns String eg. "com.bundle.identifier"

Get Device Height

wizUtils.getDeviceHeight(Function success); 
* returns Int eg. 480

Get Device Width

wizUtils.getDeviceWidth(Function success); 
* returns Int eg. 320

Get Text

wizUtils.getText(Function success, Function failure);
* returns String (current clipboard/clipbuffer text)

Set Text

wizUtils.setText(String text, Function success, Function failure);
* Sets the current clipboard/clipbuffer text

Restart

wizUtils.wizUtils.restart(Boolean true/false);
* Restart the app.
* If a boolean value of true is passed, the splash screen will be shown.
* If a boolean value of false is passed, the splash screen will not be shown.
* If a boolean value is not provided:
*   If the AutoHideSplashScreen key is set to YES in the Cordova.plist file.
*   Otherwise, the splash screen will not be shown.

About

PhoneGap plugin for general utility functions to access information from the native OS.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 76.3%
  • Objective-C 22.8%
  • Other 0.9%