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.localytics.phonegap.LocalyticsPlugin.java

/**
 * This class echoes a string called from JavaScript.
 */
public class LocalyticsPlugin extends CordovaPlugin {
    private static final String PROP_SENDER_ID = "com.localytics.android_push_sender_id";
    private static final String ERROR_UNSUPPORTED_TYPE = "Unsupported type for attribute value.";

From source file com.logilite.vision.camera.CameraLauncher.java

/**
 * This class launches the camera view, allows the user to take a picture, closes the camera view,
 * and returns the captured image.  When the camera view is closed, the screen displayed before
 * the camera view was shown is redisplayed.
 */
public class CameraLauncher extends CordovaPlugin implements MediaScannerConnectionClient {

From source file com.luditeam.cordova.plugin.ad.adcolony.Util.java

public class AdColonyPlugin extends CordovaPlugin {
    private static final String LOG_TAG = "AdColonyPlugin";
    private CallbackContext callbackContextKeepCallback;
    //
    protected String email;
    protected String licenseKey;

From source file com.luditeam.cordova.plugin.ad.chartboost.Util.java

public class ChartboostPlugin extends CordovaPlugin {
    private static final String LOG_TAG = "ChartboostPlugin";
    private CallbackContext callbackContextKeepCallback;
    //
    protected String email;
    protected String licenseKey;

From source file com.luhuiguo.cordova.voice.VoiceHandler.java

/**
 * This class called by CordovaActivity to play and record voice.
 * The file can be local or over a network using http.
 *
 */
public class VoiceHandler extends CordovaPlugin {

From source file com.luochunhui.cordova.context.Connection.java

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

    /**
     * Constructor.
     */

From source file com.luochunhui.cordova.context.Context.java

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

    public static String cordovaVersion = "dev"; // Cordova version
    public static String platform; // Device OS
    public static String uuid; // Device UUID

From source file com.luoteng.folk.plugins.ActivityPlugin.java

/**
 * plugin
 * @author mengxiangcheng
 *
 */
public class ActivityPlugin extends CordovaPlugin {

From source file com.luoteng.folk.plugins.FolkPlugin.java

/**
 * plugin
 * @author mengxiangcheng
 *
 */
public class FolkPlugin extends CordovaPlugin {

From source file com.luoteng.folk.plugins.LifeCyclePlugin.java

public class LifeCyclePlugin extends CordovaPlugin {

    static String TAG = "LifeCyclePlugin";
    String calls = "";

    @Override