List of usage examples for org.apache.cordova CordovaPlugin subclass-usage
From source file com.m.cenarius.example.whitelist.WhitelistPlugin.java
public class WhitelistPlugin extends CordovaPlugin { private static final String LOG_TAG = "WhitelistPlugin"; private Whitelist allowedNavigations; private Whitelist allowedIntents; private Whitelist allowedRequests;
From source file com.macadamian.blinkup.BlinkUpPlugin.java
/********************************************* * execute() called from Javascript interface, * which saves the arguments and presents the * BlinkUpPlugin interface from the SDK ********************************************/ public class BlinkUpPlugin extends CordovaPlugin {
From source file com.macdonst.ftpclient.FtpClient.java
public class FtpClient extends CordovaPlugin { private static final String LOG_TAG = "FtpClient"; /** * Executes the request and returns PluginResult.
From source file com.manu.videoplayer.NewActivity.java
public class NewActivity 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.manueldeveloper.SpeechRecognizer.java
public class SpeechRecognizer extends CordovaPlugin { //private static final String SpeechRecognizer_LOG= "SpeechRecognizer"; private CallbackContext speechRecognizerCallbackContext; private static final int REQUEST_CODE = 1;
From source file com.manueldeveloper.VolumeButtonsListener.java
public class VolumeButtonsListener extends CordovaPlugin implements OnKeyListener { private static final String VolumeButtonsListener_LOG = "VolumeButtonsListener"; private CallbackContext volumeCallbackContext; /**
From source file com.marianhello.cordova.bgloc.BackgroundGpsPlugin.java
public class BackgroundGpsPlugin extends CordovaPlugin { private static final String TAG = "BackgroundGpsPlugin"; public static final String ACTION_START = "start"; public static final String ACTION_STOP = "stop"; public static final String ACTION_CONFIGURE = "configure";
From source file com.mattrayner.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.mawujun.plugins.barcodescanner.BarcodeScanner.java
/** * This calls out to the ZXing barcode reader and returns the result. * * @sa https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/CordovaPlugin.java */ public class BarcodeScanner extends CordovaPlugin {
From source file com.mawujun.plugins.barcodescanner.BarcodeScanner_landscape.java
/** * This calls out to the ZXing barcode reader and returns the result. * * @sa https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/CordovaPlugin.java */ public class BarcodeScanner_landscape extends CordovaPlugin {