You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/08/19 23:38:32 UTC

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

[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/2d0c783b
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/tree/2d0c783b
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-device/diff/2d0c783b

Branch: refs/heads/master
Commit: 2d0c783beea770d36d5df86d5e3e45039cd16876
Parents: 1437895
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Jul 31 19:57:24 2013 -0400
Committer: Steven Gill <st...@gmail.com>
Committed: Wed Aug 14 14:53:59 2013 -0700

----------------------------------------------------------------------
 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/2d0c783b/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 0a32bd9..c14685a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -18,11 +18,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/2d0c783b/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;