List of usage examples for org.apache.cordova CordovaPlugin subclass-usage
From source file com.byhook.cordova.wifilauncher.WifiLauncher.java
public class WifiLauncher extends CordovaPlugin { public static String TAG = "WifiLauncher"; /** * Executes the request and returns PluginResult.
From source file com.ca.mas.cordova.connecta.MASConnectaPlugin.java
public class MASConnectaPlugin extends CordovaPlugin { private static final String TAG = MASConnectaPlugin.class.getCanonicalName(); private static CallbackContext _messageReceiverCallback = null; private static volatile boolean isListenerRegistered = false;
From source file com.ca.mas.cordova.identitymanagement.MASIdentityManagementPlugin.java
public class MASIdentityManagementPlugin extends CordovaPlugin { private static final String TAG = MASIdentityManagementPlugin.class.getCanonicalName(); private static MASIdentityManagementPlugin _plugin = null; @Override protected void pluginInitialize() {
From source file com.caasera.android.RecordVideo.java
public class RecordVideo extends CordovaPlugin { CallbackContext _callbackContext; @Override public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
From source file com.candygram.media.AudioHandler.java
/**
* This class called by CordovaActivity to play and record audio.
* The file can be local or over a network using http.
*
* Audio formats supported (tested):
* .mp3, .wav
From source file com.capriza.plugins.Notification.java
/**
* This class provides access to notifications on the device.
*
* Be aware that this implementation gets called on
* navigator.notification.{alert|confirm|prompt}, and that there is a separate
* implementation in org.apache.cordova.CordovaChromeClient that gets
From source file com.capriza.plugins.SplashScreen.java
public class SplashScreen extends CordovaPlugin { private static final String LOG_TAG = "SplashScreen"; // Cordova 3.x.x has a copy of this plugin bundled with it (SplashScreenInternal.java). // Enable functionality only if running on 4.x.x. private static final boolean HAS_BUILT_IN_SPLASH_SCREEN = Integer .valueOf(CordovaWebView.CORDOVA_VERSION.split("\\.")[0]) < 4;
From source file com.catchoom.craftar.CraftARPlugin.java
/** * * Cordova plugin class for recognizing images with the CraftAR API */ public class CraftARPlugin extends CordovaPlugin {
From source file com.cem.echo.Echo.java
/** * This class echoes a string called from JavaScript. */ public class Echo extends CordovaPlugin { public TerminalHandler mTerminalHandler; public APDUSmartCard mAPDUSmartCard;
From source file com.clevertap.cordova.CleverTapPlugin.java
public class CleverTapPlugin extends CordovaPlugin implements SyncListener { private static final String LOG_TAG = "CLEVERTAP_PLUGIN"; private static String CLEVERTAP_API_ERROR; private static CleverTapAPI cleverTap;