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.ugrokit.cordova.ugrokit.UGrokIt.java

public class UGrokIt extends CordovaPlugin implements Ugi.FirmwareUpdateDelegate {
    public static final String TAG = "UGrokIt";

    private static Ugi ugi;

    private CallbackContext firmwareCallbackContext;

From source file com.unarin.cordova.beacon.LocationManager.java

@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public class LocationManager extends CordovaPlugin implements BeaconConsumer {

    public static final String TAG = "com.unarin.cordova.beacon";
    private static int CDV_LOCATION_MANAGER_DOM_DELEGATE_TIMEOUT = 30;

From source file com.unit11apps.echo.Echo.java

public class Echo extends CordovaPlugin {

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) {
        PluginResult.Status status = PluginResult.Status.OK;
        String result = "";

From source file com.unit11apps.tts.TTS.java

public class TTS extends CordovaPlugin implements OnInitListener, OnUtteranceCompletedListener {

    private static final String LOG_TAG = "TTS";
    private static final int STOPPED = 0;
    private static final int INITIALIZING = 1;
    private static final int STARTED = 2;

From source file com.vibrationapps.Vibration.java

/**
 * This class provides access to vibration on the device.
 */
public class Vibration extends CordovaPlugin {

    /**

From source file com.vidinoti.pixlive.PixLive.java

/**
 * This class echoes a string called from JavaScript.
 */
public class PixLive extends CordovaPlugin implements VDARSDKControllerEventReceiver, VDARContentEventReceiver,
        VDARSDKSensorEventReceiver, VDARRemoteControllerListener {

From source file com.viniciusfagundes.cordova.plugin.navigationbar.NavigationBar.java

public class NavigationBar extends CordovaPlugin {
    private static final String TAG = "NavigationBar";

    /**
     * Sets the context of the Command. This can then be used to do things like
     * get file paths associated with the Activity.

From source file com.vladstirbu.cordova.CDVInstagramPlugin.java

@TargetApi(Build.VERSION_CODES.FROYO)
public class CDVInstagramPlugin extends CordovaPlugin {

    private static final FilenameFilter OLD_IMAGE_FILTER = new FilenameFilter() {
        @Override
        public boolean accept(File dir, String name) {

From source file com.vladstirbu.cordova.CDVInstagramVideoPlugin.java

@TargetApi(Build.VERSION_CODES.FROYO)
public class CDVInstagramVideoPlugin extends CordovaPlugin {

    private static final FilenameFilter OLD_IMAGE_FILTER = new FilenameFilter() {
        @Override
        public boolean accept(File dir, String name) {

From source file com.vladstirbu.cordova.Gamepad.java

public class Gamepad extends CordovaPlugin {

    private Integer[] buttons = new Integer[17];
    private Hashtable<String, Integer> map = new Hashtable<String, Integer>();
    private CordovaPlugin self = this;