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:39:26 UTC

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

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


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

Branch: refs/heads/master
Commit: 05de2b81f5076b69fee5c637b76abcbee38f00d9
Parents: 38bf432
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 15:13:51 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion/blob/05de2b81/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 73869a2..d4ecc7a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,11 +22,11 @@
 	    
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="Accelerometer">
-                <param name="android-package" value="org.apache.cordova.core.AccelListener"/>
+                <param name="android-package" value="org.apache.cordova.devicemotion.AccelListener"/>
             </feature>
         </config-file>
 
-        <source-file src="src/android/AccelListener.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/AccelListener.java" target-dir="src/org/apache/cordova/devicemotion" />
     
     </platform>
     

http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion/blob/05de2b81/src/android/AccelListener.java
----------------------------------------------------------------------
diff --git a/src/android/AccelListener.java b/src/android/AccelListener.java
index a1ab86c..94479fd 100755
--- a/src/android/AccelListener.java
+++ b/src/android/AccelListener.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.devicemotion;
 
 import java.util.List;