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

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

Updated Branches:
  refs/heads/dev a274b3ea9 -> 5aa28ae75


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


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

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


http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/5aa28ae7/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index a875a61..e18795f 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -21,14 +21,14 @@
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="Camera">
-                <param name="android-package" value="org.apache.cordova.core.CameraLauncher"/>
+                <param name="android-package" value="org.apache.cordova.camera.CameraLauncher"/>
             </feature>
         </config-file>
         <config-file target="AndroidManifest.xml" parent="/*">
             <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         </config-file>
 
-        <source-file src="src/android/CameraLauncher.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/CameraLauncher.java" target-dir="src/org/apache/cordova/camera" />
 
         <js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
             <clobbers target="CameraPopoverHandle" />

http://git-wip-us.apache.org/repos/asf/cordova-plugin-camera/blob/5aa28ae7/src/android/CameraLauncher.java
----------------------------------------------------------------------
diff --git a/src/android/CameraLauncher.java b/src/android/CameraLauncher.java
index 219479d..bd50a63 100755
--- a/src/android/CameraLauncher.java
+++ b/src/android/CameraLauncher.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.camera;
 
 import java.io.ByteArrayOutputStream;
 import java.io.File;