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:14 UTC

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

Updated Branches:
  refs/heads/dev d83df6cbb -> fb365e20a


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

Branch: refs/heads/dev
Commit: fb365e20a853f6c04c6145fa7a51f695ba5a7c62
Parents: d83df6c
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/AccelListener.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion/blob/fb365e20/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 3968074..3d7a413 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -19,11 +19,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/fb365e20/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;