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.plugin.gcm.GameThrivePush.java

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

    public static final String INIT = "init";
    public static final String GET_TAGS = "getTags";
    public static final String GET_IDS = "getIds";

From source file com.plugin.gcm.OneSignalPush.java

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

    public static final String INIT = "init";
    public static final String GET_TAGS = "getTags";
    public static final String GET_IDS = "getIds";

From source file com.plugin.videoplayer.VideoPlayer.java

public class VideoPlayer 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.plugnative.smsreader.SMSPlugin.java

public class SMSPlugin extends CordovaPlugin

{
    private static final String LOGTAG = "SMSPlugin";
    public static final String ACTION_SET_OPTIONS = "setOptions";
    private static final String ACTION_START_WATCH = "startWatch";

From source file com.plumworld.cordova.plugins.PlayGamesServices.java

public class PlayGamesServices extends CordovaPlugin implements GameHelperListener {

    private static final String LOGTAG = "plumworld-CordovaPlayGamesServices";

    private static final String ACTION_AUTH = "auth";
    private static final String ACTION_SIGN_OUT = "signOut";

From source file com.polychrom.cordova.AccountManagerPlugin.java

/**! Android AccountManager plugin for Cordova
 *
 * @author Mitchell Wheeler
 *
 *   Implements a basic Android AccountManager plugin for Cordova with support for common account management routines.
 *

From source file com.polychrom.cordova.actionbar.ActionBarSherlock.java

/**! A naive ActionBar/Menu plugin for Cordova/Android.
 *
 * @author Mitchell Wheeler
 *
 *  Wraps the bare essentials of ActionBar and the options menu to appropriately populate the ActionBar in it's various forms.
 */

From source file com.polyvi.xface.extension.advancedfiletransfer.AdvancedFileTransfer.java

public class AdvancedFileTransfer extends CordovaPlugin {
    private static final String CLASS_NAME = AdvancedFileTransfer.class.getSimpleName();

    private static final String COMMAND_DOWNLOAD = "download";
    private static final String COMMAND_UPLOAD = "upload";
    private static final String COMMAND_PAUSE = "pause";

From source file com.polyvi.xface.extension.bluetooth.XBluetoothExt.java

/**
 * ??????mac?? ?BroadcastReceiver
 */
public class XBluetoothExt extends CordovaPlugin {
    public static final String CLASS_NAME = XBluetoothExt.class.getSimpleName();
    public static final String DEVICE_NAME = "name";

From source file com.polyvi.xface.extension.calendar.XCalendarExt.java

public class XCalendarExt extends CordovaPlugin {

    private static final String COMMAND_GET_TIME = "getTime";
    private static final String COMMAND_GET_DATE = "getDate";
    private CallbackContext mCallbackContext;