phonegap-plugin-wizUtils
phonegap version : 1.7
last update : 10/05/2012
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.