List of usage examples for org.apache.cordova CordovaPlugin subclass-usage
From source file com.emsitel.emsivoz.Echo.java
public class Echo extends CordovaPlugin { private Notificacion mNotificacion; @Override public void initialize(CordovaInterface cordova, CordovaWebView webView) { super.initialize(cordova, webView);
From source file com.encodata.PDFSigner.PDFSigner.java
/** * * @author stfnnvl */ public class PDFSigner extends CordovaPlugin {
From source file com.epsi.plugins.cordova.CafeBazaar.java
public class CafeBazaar extends CordovaPlugin { private static final String LOG_TAG = CafeBazaar.class.getSimpleName(); private static int REQUEST_CODE = 1001; //@Override public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
From source file com.es3.cordova.plugins.showwhenlocked.ShowWhenLocked.java
public class ShowWhenLocked extends CordovaPlugin { private static final String TAG = "ShowWhenLocked"; @Override public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
From source file com.esri.cordova.geolocation.AdvancedGeolocation.java
public class AdvancedGeolocation extends CordovaPlugin { public static final String PROVIDERS_ALL = "all"; public static final String PROVIDERS_SOME = "some"; public static final String PROVIDERS_GPS = "gps"; public static final String PROVIDERS_NETWORK = "network";
From source file com.example.androidcordovawebviewdemo.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.example.cordova.practise.Practise.java
public class Practise extends CordovaPlugin { /** * Constructor. */ public Practise() { }
From source file com.example.cordovatest2.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.example.imageZoom.ActivityPlugin.java
/** * This class provides a service. */ public class ActivityPlugin extends CordovaPlugin { static String TAG = "ActivityPlugin";
From source file com.example.plugin.PhoneListener.java
/** * @author Tommy-Carlos Williams, * Huge chunks lifted/adapted from the NextworkManager core PhoneGap plugin */ public class PhoneListener extends CordovaPlugin {