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.doylestowncoder.plugin.mobileaccessibility.MobileAccessibility.java

/**
 * This class provides information on the status of native accessibility services to JavaScript.
 */
public class MobileAccessibility extends CordovaPlugin {
    protected AbstractMobileAccessibilityHelper mMobileAccessibilityHelper;
    protected CallbackContext mCallbackContext = null;

From source file com.dpms.idscan.IDScanner.java

public class IDScanner extends CordovaPlugin {
    private CallbackContext callbackContext;
    private String cameraKey, parserKey;

    private static final String TAG = "IDScannerPlugin";
    private final static int SCAN_ACTIVITY_CODE = 0x001;

From source file com.dtworkshop.inappcrossbrowser.WebViewBrowser.java

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

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

From source file com.dtz.plugins.azurehubnotification.AzureHubNotification.java

public class AzureHubNotification extends CordovaPlugin {
    protected static final String TAG = "Azure Hub Notification Plugin";
    private GoogleCloudMessaging gcm;
    private NotificationHub hub;
    public static final String ACTION_AZURE_HUB_NOTIFICATION_REGISTER = "ACTION_AZURE_HUB_NOTIFICATION_REGISTER";
    public static final String ACTION_AZURE_HUB_NOTIFICATION_UN_REGISTER = "ACTION_AZURE_HUB_NOTIFICATION_UN_REGISTER";

From source file com.dude.plugins.sms.SMSPlugin.java

public class SMSPlugin extends CordovaPlugin {
    private static final String LOGTAG = "SMSPlugin";

    public static final String ACTION_SET_OPTIONS = "setOptions";
    private static final String ACTION_START_WATCH = "startWatch";
    private static final String ACTION_STOP_WATCH = "stopWatch";

From source file com.dw.bartinter.BarTinter.java

public class BarTinter extends CordovaPlugin {

    private static final String TAG = "BarTinter";

    @Override
    public void initialize(final CordovaInterface cordova, CordovaWebView webView) {

From source file com.ecor.MDNS.java

public class MDNS extends CordovaPlugin {
    WifiManager.MulticastLock lock;

    private JmDNS jmdns;
    private ServiceListener listener;
    private CallbackContext callback;

From source file com.eduardokraus.screenorientation.CDVOrientation.java

public class CDVOrientation extends CordovaPlugin {

    private static final String TAG = "YoikScreenOrientation";

    /**
     * Screen Orientation Constants

From source file com.emesonsantana.cordova.pedometer.PedometerListener.java

/**
 * This class listens to the pedometer sensor
 */
public class PedometerListener extends CordovaPlugin implements SensorEventListener, StepListener {

    public static int STOPPED = 0;

From source file com.emeth.cordova.ble.central.BLECentralPlugin.java

public class BLECentralPlugin extends CordovaPlugin implements BluetoothAdapter.LeScanCallback {

    // actions
    private static final String SCAN = "scan";
    private static final String START_SCAN = "startScan";
    private static final String STOP_SCAN = "stopScan";