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/08/01 01:58:11 UTC

git commit: [CB-4417] Move cordova-plugin-device to its own Java package.

Updated Branches:
  refs/heads/dev 45c7863e8 -> c90e7234d


[CB-4417] Move cordova-plugin-device to its own Java package.


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/commit/c90e7234
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/tree/c90e7234
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/diff/c90e7234

Branch: refs/heads/dev
Commit: c90e7234d1ee8d809703796e7d2f436f55034cad
Parents: 45c7863
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jul 31 19:57:24 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Jul 31 19:57:24 2013 -0400

----------------------------------------------------------------------
 plugin.xml              | 4 ++--
 src/android/Device.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/blob/c90e7234/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 7f9f78b..6a8ae0e 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -13,11 +13,11 @@
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="Device" >
-                <param name="android-package" value="org.apache.cordova.core.Device"/>
+                <param name="android-package" value="org.apache.cordova.device.Device"/>
             </feature>
         </config-file>
 
-        <source-file src="src/android/Device.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/Device.java" target-dir="src/org/apache/cordova/device" />
     </platform>
 
     <!-- ios -->

http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/blob/c90e7234/src/android/Device.java
----------------------------------------------------------------------
diff --git a/src/android/Device.java b/src/android/Device.java
index 4ebaffa..2ce3cc7 100644
--- a/src/android/Device.java
+++ b/src/android/Device.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.device;
 
 import java.util.TimeZone;