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

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

Updated Branches:
  refs/heads/dev 9cd7316e5 -> 04569bdac


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


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

Branch: refs/heads/dev
Commit: 04569bdac0999f71ae48ca49a811433f33512e6b
Parents: 9cd7316
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/CompassListener.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-orientation/blob/04569bda/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 75d1732..64338a6 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -22,7 +22,7 @@
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
 	        <feature name="Compass">
-	            <param name="android-package" value="org.apache.cordova.core.CompassListener"/>
+	            <param name="android-package" value="org.apache.cordova.deviceorientation.CompassListener"/>
 	        </feature>
 	    </config-file>
 	
@@ -31,7 +31,7 @@
             <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
         </config-file>
 
-	    <source-file src="src/android/CompassListener.java" target-dir="src/org/apache/cordova/core" />
+	    <source-file src="src/android/CompassListener.java" target-dir="src/org/apache/cordova/deviceorientation" />
     </platform>
     
     <!-- ios -->

http://git-wip-us.apache.org/repos/asf/cordova-plugin-device-orientation/blob/04569bda/src/android/CompassListener.java
----------------------------------------------------------------------
diff --git a/src/android/CompassListener.java b/src/android/CompassListener.java
index 146c2e8..194db0d 100755
--- a/src/android/CompassListener.java
+++ b/src/android/CompassListener.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.deviceorientation;
 
 import java.util.List;