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.ideateam.plugin.Version.java

/**
* This class exposes methods in Cordova that can be called from JavaScript.
*/
public class Version extends CordovaPlugin {
    public static final int DIALOG_DOWNLOAD_PROGRESS = 0;
    public String url = "http://tsvb.touchstat.com/update/android/tablet/";

From source file com.inbeacon.cordova.CordovaInbeaconManager.java

public class CordovaInbeaconManager extends CordovaPlugin {

    public static final String TAG = "cordova-plugin-inbeacon";
    private BroadcastReceiver broadcastReceiver;
    private CallbackContext eventCallbackContext;

From source file com.ingeneo.cordova.plugins.ibeacon.GPIBeacon.java

public class GPIBeacon extends CordovaPlugin
        implements IBeaconConsumer, MonitorNotifier, RangeNotifier, IBeaconDataNotifier {
    public static final int REQUEST_CODE = 0x0ba7c0de;

    public static final int NOTIFICATION_ID = 137;

From source file com.iniciacomunicacion.devicenotification.DeviceNotification.java

/**
 * This class provides access to Notification manager on the device.
 *
 * @author Inigo Gonzalez
 */
public class DeviceNotification extends CordovaPlugin {

From source file com.initialxy.cordova.themeablebrowser.ThemeableBrowser.java

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

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

From source file com.intel.cordovacontext.CordovaContext.java

public class CordovaContext extends CordovaPlugin {
    // Using enum to organize the code
    // This enum represent all of the supported context type
    private static enum CONTEXT_TYPE {
        // "TAPPING", "SHAKING", "GESTURE_FLICK", "GESTURE_EAR_TOUCH"
        MUSIC(ContextType.MUSIC), LOCATION(ContextType.LOCATION), TERMINAL_CONTEXT(

From source file com.intel.GooglePlayGamesPlugin.java

/**
 *
 * @author Ian Maffet
 * @copyright 2014
 * @file ggamesPlugin for Cordova
 *

From source file com.intel.xdk.accelerometer.Accelerometer.java

@SuppressWarnings("deprecation")
public class Accelerometer extends CordovaPlugin implements SensorListener {
    String mKey;
    int mTime = 10000;
    public boolean started = false;

From source file com.intel.xdk.audio.Audio.java

public class Audio extends CordovaPlugin {
    private MediaPlayer mediaPlayer = null;
    private MediaRecorder mediaRecorder = null;
    private final String recordingDirName = "_recordings";
    private String recordingFileName = null;
    private File recordingDirectory = null;

From source file com.intel.xdk.base.Base.java

/**
 * This class provides access to various notification features on the device.
 */
public class Base extends CordovaPlugin {

    private boolean isTablet = false;