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.outsystemscloud.andrevieira.secureDevice.java

public class secureDevice extends CordovaPlugin {

    CordovaInterface cordova;
    CordovaWebView view;

    @Override

From source file com.patricklobo.MobilePrinter.java

public class MobilePrinter extends CordovaPlugin {
    public static final String TAG = "MobilePrinter";
    public static int imageWidth = 48;

    public static String platform; // MobilePrinter OS
    public static String uuid; // MobilePrinter UUID

From source file com.pearson.plugins.audio.PearsonAudioHandler.java

/**
 * This class called by CordovaActivity to play and record audio. The file can
 * be local or over a network using http.
 *
 * Audio formats supported (tested): .mp3, .wav
 *

From source file com.pedox.plugin.HttpClient.HttpClient.java

public class HttpClient extends CordovaPlugin {

    /**
     * Constructor.
     */
    public HttpClient() {

From source file com.percolatestudio.cordova.fileupload.PSFileUpload.java

public class PSFileUpload extends CordovaPlugin {

    private static final String LOG_TAG = "PSFileUpload";
    private static final String LINE_START = "--";
    private static final String LINE_END = "\r\n";
    private static final String BOUNDARY = "+++++";

From source file com.phonegap.bossbolo.plugin.BoloPlugin.java

public class BoloPlugin extends CordovaPlugin {
    private static final String TAG = "BoosboloPlugin";
    private CordovaWebView webView;
    private Activity activity;
    private Window window;

From source file com.phonegap.bossbolo.plugin.inappbrowser.InAppBrowser.java

@SuppressLint("SetJavaScriptEnabled")
public class InAppBrowser 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.phonegap.bossbolo.plugin.statusbar.StatusBar.java

public class StatusBar extends CordovaPlugin {
    private static final String TAG = "StatusBar";

    /**
     * Sets the context of the Command. This can then be used to do things like
     * get file paths associated with the Activity.

From source file com.phonegap.cordova.FileOpener.java

public class FileOpener extends CordovaPlugin {

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {

        PluginResult.Status status = PluginResult.Status.OK;

From source file com.phonegap.customcamera.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.
 */