Upgrading App plugin to CordovaPlugin

This commit is contained in:
Joe Bowser 2012-11-19 11:33:21 -08:00
parent d2f59391a2
commit 28ef765913

View File

@ -19,6 +19,7 @@
package org.apache.cordova; package org.apache.cordova;
import org.apache.cordova.api.CordovaPlugin;
import org.apache.cordova.api.LOG; import org.apache.cordova.api.LOG;
import org.apache.cordova.api.Plugin; import org.apache.cordova.api.Plugin;
import org.apache.cordova.api.PluginResult; import org.apache.cordova.api.PluginResult;
@ -30,7 +31,7 @@ import java.util.HashMap;
/** /**
* This class exposes methods in DroidGap that can be called from JavaScript. * This class exposes methods in DroidGap that can be called from JavaScript.
*/ */
public class App extends Plugin { public class App extends CordovaPlugin {
/** /**
* Executes the request and returns PluginResult. * Executes the request and returns PluginResult.