You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/07/30 20:50:49 UTC

docs commit: [CB-4454] Android org.apache.cordova.api -> org.apache.cordova

Updated Branches:
  refs/heads/master 140c19298 -> 83bce5d7e


[CB-4454] Android org.apache.cordova.api -> org.apache.cordova


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/83bce5d7
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/83bce5d7
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/83bce5d7

Branch: refs/heads/master
Commit: 83bce5d7e27a33f6bd91a10e3553d3453dcb5d6f
Parents: 140c192
Author: Andrew Grieve <ag...@chromium.org>
Authored: Tue Jul 30 14:50:24 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Jul 30 14:50:24 2013 -0400

----------------------------------------------------------------------
 docs/en/edge/guide/platforms/android/plugin.md    | 6 +++---
 docs/en/edge/guide/platforms/android/upgrading.md | 2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/83bce5d7/docs/en/edge/guide/platforms/android/plugin.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/android/plugin.md b/docs/en/edge/guide/platforms/android/plugin.md
index 7a4b512..c63c2e3 100644
--- a/docs/en/edge/guide/platforms/android/plugin.md
+++ b/docs/en/edge/guide/platforms/android/plugin.md
@@ -137,8 +137,8 @@ application:
 
     package org.apache.cordova.plugin;
 
-    import org.apache.cordova.api.CordovaPlugin;
-    import org.apache.cordova.api.PluginResult;
+    import org.apache.cordova.CordovaPlugin;
+    import org.apache.cordova.PluginResult;
     import org.json.JSONArray;
     import org.json.JSONException;
     import org.json.JSONObject;
@@ -201,4 +201,4 @@ a new Android `Intent`. The `CordovaInterface` allows plugins to start an `Activ
 One of the best ways to prepare yourself to write your own plugin is to
 [look over existing plugins](https://github.com/apache/cordova-android/tree/master/framework/src/org/apache/cordova).
 
-You should also read through the comments in [CordovaPlugin.java](https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/api/CordovaPlugin.java).
+You should also read through the comments in [CordovaPlugin.java](https://github.com/apache/cordova-android/blob/master/framework/src/org.apache.cordova/CordovaPlugin.java).

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/83bce5d7/docs/en/edge/guide/platforms/android/upgrading.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/android/upgrading.md b/docs/en/edge/guide/platforms/android/upgrading.md
index b626c94..d703ef6 100644
--- a/docs/en/edge/guide/platforms/android/upgrading.md
+++ b/docs/en/edge/guide/platforms/android/upgrading.md
@@ -55,6 +55,8 @@ version of the CLI.
 
 5. Make sure to upgrade any deprecated `<plugin>` references from your old `config.xml` file to the new `<feature>` specification.
 
+6. Update any references to the `org.apache.cordova.api` package to be `org.apache.cordova`.
+
 - __NOTE:__ all core APIs have been removed and must be installed as plugins. Please see the Using Plugman to Manage Plugins Guide for details.
 
 ## Upgrade to 2.9.0 from 2.8.0