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 BarcodeReaderPlugin.java

public class BarcodeReaderPlugin extends CordovaPlugin implements BarcodeReader.BarcodeListener {

    public static final String TAG = "BarcodeReaderPlugin";

    // Actions supported by our execute() method
    // These strings need to match the actions sent in exec() calls in Barcode.js

From source file ai.api.ApiAiPlugin.java

public class ApiAiPlugin extends CordovaPlugin implements AIListener {

    private static final String TAG = ApiAiPlugin.class.getName();

    private AIService aiService;
    private Gson gson;

From source file android.plugin.calls.Calls.java

public class Calls extends CordovaPlugin {

    @Override
    public void initialize(CordovaInterface cordova, CordovaWebView webView) {
        super.initialize(cordova, webView);
    }

From source file android.WeChat.java

public class WeChat extends CordovaPlugin {

    public static final String WECHAT_APPID_KEY = "wechatappid";

    public static final String ERR_WECHAT_NOT_INSTALLED = "ERR_WECHAT_NOT_INSTALLED";
    public static final String ERR_INVALID_OPTIONS = "ERR_INVALID_OPTIONS";

From source file ar.com.nigdy.printer.Printer.java

public class Printer extends CordovaPlugin {

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

        if (action.equals("print")) {

From source file at.modalog.cordova.plugin.cache.Cache.java

@TargetApi(19)
public class Cache extends CordovaPlugin {
    private static final String LOG_TAG = "Cache";
    private CallbackContext callbackContext;

    /**

From source file at.neiti.cordova.navigation.Navigation.java

public class Navigation extends CordovaPlugin {

    /**
     * Executes the request and returns PluginResult.
     *
     * @param action            The action to execute.

From source file au.com.micropacific.cordova.CipherlabRS30Plugin.java

/**
 * This class echoes a string called from JavaScript.
 */
public class CipherlabRS30Plugin extends CordovaPlugin {

    // IntentFilter is used to get the intent we need.

From source file beatstream.Immersive.java

public class Immersive extends CordovaPlugin {
    public static final String LOG_TAG = "Device";

    /**
     * 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 br.ajmarques.cordova.plugin.localnotification.LocalNotification.java

/**
 * This plugin utilizes the Android AlarmManager in combination with StatusBar
 * notifications. When a local notification is scheduled the alarm manager takes
 * care of firing the event. When the event is processed, a notification is put
 * in the Android status bar.
 */