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.tmantman.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.tonikorin.cordova.plugin.autostart.AutoStart.java

public class AutoStart extends CordovaPlugin {

    public static final String PREFS = "autostart";
    public static final String CLASS_NAME = "class";

    /**

From source file com.tonikorin.cordova.plugin.configalert.ConfigAlertPlugin.java

public class ConfigAlertPlugin extends CordovaPlugin {

    private static final String TAG = "ConfigAlertPlugin";
    private static final String PREFS = "ConfigAlert";
    private static final String SKIP = "skipAlert";
    private static final String PACKAGE_NAME = "com.huawei.systemmanager";

From source file com.tonikorin.cordova.plugin.LocationProvider.LocationProviderPlugin.java

public class LocationProviderPlugin extends CordovaPlugin {

    private static final String TAG = "LocationProviderPlugin";

    /**
     * Executes the request.

From source file com.tosi.saverio.test.Test.java

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

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

From source file com.tribalyte.plugin.myo.MyoApi.java

/**
 * Class implementing the communication between the Cordova plugin and the Myo SDK API for Android
 * 
 * @author rbarriuso
 *
 */

From source file com.triggertrap.ZeroConf.java

public class ZeroConf extends CordovaPlugin {
    WifiManager.MulticastLock lock;
    private JmDNS jmdns = null;
    private ServiceListener listener;
    private CallbackContext callback;

From source file com.trimble.mcs.cordova.plugin.TrmbMcsRfid.java

public class TrmbMcsRfid extends CordovaPlugin {
    private static final String TAG = "TrimbleMcsRfid";
    private static final String ACTION_INIT = "init";
    private static final String ACTION_DEINIT = "deinit";
    private static final String ACTION_START_SCAN = "startScan";
    private static final String ACTION_STOP_SCAN = "stopScan";

From source file com.tuxpan.foregroundcameragalleryplugin.ForegroundCameraLauncher.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.
 */
public class ForegroundCameraLauncher extends CordovaPlugin implements MediaScannerConnectionClient {

From source file com.tuxpan.foregroundvideocapture.CaptureFG.java

public class CaptureFG extends CordovaPlugin {

    private static final String VIDEO_3GPP = "video/3gpp";

    private static final String LOG_TAG = "CaptureFG";