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.mecusorin.cordova.video.VideoPlayer.java

public class VideoPlayer extends CordovaPlugin {
    private static final String YOU_TUBE = "youtube.com";
    private static final String ASSETS = "file:///android_asset/";

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

From source file com.medicast.plugins.googleanalytics.GoogleAnalyticsPlugin.java

public class GoogleAnalyticsPlugin extends CordovaPlugin {

    private static GoogleAnalytics ga;
    private static Tracker tracker;

    /**

From source file com.megster.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";

From source file com.megster.cordova.rfduino.RFduinoPlugin.java

public class RFduinoPlugin extends CordovaPlugin implements BluetoothAdapter.LeScanCallback {

    // actions
    private static final String DISCOVER = "discover";
    private static final String LIST = "list";

From source file com.microsoft.aad.adal.CordovaAdalPlugin.java

public class CordovaAdalPlugin extends CordovaPlugin {

    private static final PromptBehavior SHOW_PROMPT_ALWAYS = PromptBehavior.Always;

    private static final int GET_ACCOUNTS_PERMISSION_REQ_CODE = 0;
    private static final String PERMISSION_DENIED_ERROR = "Permissions denied";

From source file com.microsoft.azure.engagement.cordova.AZME.java

public class AZME extends CordovaPlugin {

    private static final String pluginName = "CDVAZME";
    private static final String pluginVersion = "3.2.0";
    private static final String nativeSDKVersion = "4.1.0"; // to eventually retrieve from the SDK itself

From source file com.microsoft.c3p.cordova.C3PCordovaPlugin.java

/**
 * A Cordova plugin that enables other Cordova plugins to easily bridge between
 * JavaScript and Java code.
 */
public final class C3PCordovaPlugin extends CordovaPlugin {
    private static final String TAG = "C3PCordovaPlugin";

From source file com.mirasense.scanditsdk.plugin.ScanditSDK.java

public class ScanditSDK extends CordovaPlugin implements ScanditSDKResultRelayCallback {

    public static final String SCAN = "scan";

    private CallbackContext mCallbackContext;

From source file com.mobiquitynetworks.cordova.mnnotifications.NotificationsManager.java

public class NotificationsManager extends CordovaPlugin
        implements IntentProxy.BluetoothHandler, IntentProxy.GeoHandler {
    private static final String TAG = "NotificationsManager";

    public static final String EVENT_START_MONITORING = "startMonitoring";
    public static final String EVENT_REGISTER_CALLBACK = "registerDelegateCallbackId";

From source file com.mobiroller.tools.inappbrowser.MobirollerInAppBrowser.java

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

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