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:59:00 UTC

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

Updated Branches:
  refs/heads/dev 7333aa262 -> 5adfa735c


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


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

Branch: refs/heads/dev
Commit: 5adfa735cb2807ee165bd28eaff52b2a5bb4a2d0
Parents: 7333aa2
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/Vibration.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/5adfa735/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 26ac0f1..cd19c64 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -36,11 +36,11 @@
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="Vibration">
-                <param name="android-package" value="org.apache.cordova.core.Vibration"/>
+                <param name="android-package" value="org.apache.cordova.vibration.Vibration"/>
             </feature>
         </config-file>
 
-        <source-file src="src/android/Vibration.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/Vibration.java" target-dir="src/org/apache/cordova/vibration" />
     </platform>
 
     <!-- ios -->

http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/5adfa735/src/android/Vibration.java
----------------------------------------------------------------------
diff --git a/src/android/Vibration.java b/src/android/Vibration.java
index 0caa071..0098619 100755
--- a/src/android/Vibration.java
+++ b/src/android/Vibration.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.vibration;
 
 import org.apache.cordova.CallbackContext;
 import org.apache.cordova.CordovaPlugin;