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/15 00:54:07 UTC

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

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

Branch: refs/heads/dev
Commit: f8d30302e0be0cdcf6ddadf7d1d76ff3fe391b2b
Parents: 154eea9
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:53:46 2013 -0700

----------------------------------------------------------------------
 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/f8d30302/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 3a34a02..f693859 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -51,11 +51,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/f8d30302/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;