Example usage for org.apache.cordova CordovaPlugin subclass-usage

List of usage examples for org.apache.cordova CordovaPlugin subclass-usage

Introduction

In this page you can find the example usage for org.apache.cordova CordovaPlugin subclass-usage.

Usage

From source file com.vp9.plugin.WebSocket.java

/**
 * WebSocket for CordovaPlugin
 * @author knowledgecode
 *
 */
public class WebSocket extends CordovaPlugin {

From source file com.vuforia.VuforiaPlugin.java

public class VuforiaPlugin extends CordovaPlugin {
    static final String LOGTAG = "CordovaVuforiaPlugin";

    // Some public static variables used to communicate state
    public static final String CAMERA = Manifest.permission.CAMERA;
    public static final String PLUGIN_ACTION = "org.cordova.plugin.vuforia.action";

From source file com.webcomm.plugin.CustomInAppBrowser.java

@SuppressLint("SetJavaScriptEnabled")
public class CustomInAppBrowser extends CordovaPlugin {

    private static final String NULL = "null";
    protected static final String LOG_TAG = "InAppBrowser";
    private static final String SELF = "_self";

From source file com.webXells.ImageResizer.ImageResizePlugin.java

public class ImageResizePlugin extends CordovaPlugin {

    public static String IMAGE_DATA_TYPE_BASE64 = "base64Image";
    public static String IMAGE_DATA_TYPE_URL = "urlImage";
    public static String RESIZE_TYPE_FACTOR = "factorResize";
    public static String RESIZE_TYPE_PIXEL = "pixelResize";

From source file com.wezka.nativecamera.NativeCameraLauncher.java

/**
 * This class launches the camera view, allows the user to take a picture,
 * closes the camera view, and returns the captured image. When the camera view
 * is closed, the screen displayed before the camera view was shown is
 * redisplayed.
 */

From source file com.whamads.nativecamera.NativeCameraLauncher.java

/**
 * This class launches the camera view, allows the user to take a picture,
 * closes the camera view, and returns the captured image. When the camera view
 * is closed, the screen displayed before the camera view was shown is
 * redisplayed.
 */

From source file com.wikitude.phonegap.WikitudePlugin.java

/**
 * Basic PhoneGap Wikitude ARchitect Plugin
 * 
 * You must add "<plugin name="WikitudePlugin" value="com.wikitude.phonegap.WikitudePlugin"/>"
 * in config.xml to enable this plug-in in your project
 * 

From source file com.wodify.cordova.plugin.filepicker.FilePicker.java

/**
 * This plugin allows a user to pick a file from their device.
 */
public class FilePicker extends CordovaPlugin {

    // Static flag to determine whether to return

From source file com.wordsbaking.cordova.tts.TTS.java

public class TTS extends CordovaPlugin implements OnInitListener {

    public static final String ERR_INVALID_OPTIONS = "ERR_INVALID_OPTIONS";
    public static final String ERR_NOT_INITIALIZED = "ERR_NOT_INITIALIZED";
    public static final String ERR_ERROR_INITIALIZING = "ERR_ERROR_INITIALIZING";
    public static final String ERR_UNKNOWN = "ERR_UNKNOWN";

From source file com.wordsbaking.cordova.wechat.WeChat.java

public class WeChat extends CordovaPlugin {

    public static final String WECHAT_APPID_KEY = "wechatappid";

    public static final String ERR_WECHAT_NOT_INSTALLED = "ERR_WECHAT_NOT_INSTALLED";
    public static final String ERR_INVALID_OPTIONS = "ERR_INVALID_OPTIONS";