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.samsung.multiwindow.MultiWindow.java

/**
 * This class launches the Multiwindow supported apps in Freestyle and in Splitstyle.
 */
public class MultiWindow extends CordovaPlugin {

    private SMultiWindow mMultiWindow = null;

From source file com.samsung.richnotification.RichNotification.java

/**
 * This class is responsible for sending rich Notification to the Gear.
 */
public class RichNotification extends CordovaPlugin implements EventListener {

    private SrnRichNotificationManager mRichNotificationManager;

From source file com.samsung.spen.SpenPlugin.java

/**
 * This class is responsible for launching both popup and Inline surface.
 */
public class SpenPlugin extends CordovaPlugin {
    private static final int ID = 0;
    private static final int SPEN_FLAGS = 1;

From source file com.samuelcastro.cordova.InstagramSharePlugin.java

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

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

From source file com.sb.splashscreen.SBSplashScreen.java

public class SBSplashScreen extends CordovaPlugin {
    private static final String LOG_TAG = "SBSplashScreen";
    private static final boolean HAS_BUILT_IN_SPLASH_SCREEN = Integer
            .valueOf(CordovaWebView.CORDOVA_VERSION.split("\\.")[0]) < 4;
    private static final int DEFAULT_SPLASHSCREEN_DURATION = 3000;
    private static Dialog splashDialog;

From source file com.scala.cordova.plugin.expnginx.ExpNginx.java

@TargetApi(19)
public class ExpNginx extends CordovaPlugin {

    private static final String LOG_TAG = "ExpNginx";
    private CallbackContext callbackContext;
    public static final String EXP_PREF = "expPref";

From source file com.sebible.cordova.videosnapshot.VideoSnapshot.java

public class VideoSnapshot extends CordovaPlugin {

    private CallbackContext callbackContext;

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

From source file com.sencha.plugins.calendar.Calendar.java

public class Calendar extends CordovaPlugin {
    public static final String ACTION_ADD_CALENDAR_ENTRY = "addCalendarEntry";

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

From source file com.sesamtv.cordova.chromecast.ChromeCast.java

public class ChromeCast extends CordovaPlugin {
    //private final String APP_ID = "31a76198-2182-481a-a4a6-27d351872026";
    private String APP_ID = null;
    private static Boolean DEBUG_MODE = true;
    private static final String MSG_PREFIX = "urn:x-cast:";
    private String PACKAGE_NAME = "com.sesamtv.chromecast";

From source file com.sharerevolution.cordova.screenshot.Screenshot.java

public class Screenshot extends CordovaPlugin {
    private CallbackContext mCallbackContext;
    private String mAction;
    private JSONArray mArgs;

    private String mFormat;