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.mohamnag.inappbilling.InAppBillingPlugin.java

public class InAppBillingPlugin extends CordovaPlugin {

    /**
     * Error codes.
     *
     * keep synchronized between: * InAppPurchase.m * InAppBillingPlugin.java *

From source file com.moodstocks.phonegap.plugin.MoodstocksPlugin.java

public class MoodstocksPlugin extends CordovaPlugin implements Scanner.SyncListener {

    public static final String TAG = "MoodstocksPlugin";

    public static final String OPEN = "open";
    public static final String SYNC = "sync";

From source file com.moodstocks.phonegap.plugin.MS4Plugin.java

public class MS4Plugin extends CordovaPlugin {
    // scanTypes and scanFlags are public so they can be used in ManualScanFragment and AutoScanFramgent classes
    // they are initially set to default values and changed later
    public static int scanFormats = Result.Type.IMAGE | Result.Type.QRCODE | Result.Type.EAN13 | Result.Type.EAN8
            | Result.Type.DATAMATRIX;
    public static boolean noPartials = true;

From source file com.movistar.tvsindesco.cordova.plugin.VideoPlugin.java

/**
 * Created by juan.fernandezfraile on 12/01/2016.
 */
public class VideoPlugin extends CordovaPlugin implements VideoPlayer.EventListener {
    private static final String LOGTAG = "LogsAndroid";
    static Context context = MainActivity.getContext();

From source file com.mrboss.posapp.apossdk.apossdk.java

public class apossdk extends CordovaPlugin {

    private static final String LOG_TAG = "apossdkPlugin";

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {

From source file com.mrboss.tianbosdk.tianbosdk.java

public class tianbosdk extends CordovaPlugin {

    private static final String LOG_TAG = "tianbosdkPlugin";

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {

From source file com.msopentech.o365.outlookServices.OutlookServicesProxy.java

/**
 * Class that handles calls to Office365 plugin's native layer
 */
public class OutlookServicesProxy extends CordovaPlugin {

    private DefaultDependencyResolver resolver;

From source file com.native5.plugins.ActionBarPlugin.java

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

From source file com.nearbytes.sdk.phonegap.NearBytesPhonegap.java

/** This class helps you to use the NearBytes SDK on Phonegap.
 * @author Icaro F. Martins <icaro@kinetics.com.br>
 * @version 1.0 */
public class NearBytesPhonegap extends CordovaPlugin implements NearBytes.NearBytesListener {
    public static final String TAG = "NearBytesPhonegap";

From source file com.neka.cordova.inappbrowser.InAppBrowser.java

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

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