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:48:53 UTC

[9/9] git commit: [CB-4417] Move cordova-plugin-media-capture to its own Java package.

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


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/commit/ef2cf104
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/tree/ef2cf104
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/diff/ef2cf104

Branch: refs/heads/dev
Commit: ef2cf1048eb8e45f3e19c72de031a72cec55c131
Parents: 2dcea84
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:48:41 2013 -0700

----------------------------------------------------------------------
 plugin.xml               | 4 ++--
 src/android/Capture.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/blob/ef2cf104/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 0d58f6e..3fa61e9 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -44,7 +44,7 @@ xmlns:android="http://schemas.android.com/apk/res/android"
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="Capture" >
-                <param name="android-package" value="org.apache.cordova.core.Capture"/>
+                <param name="android-package" value="org.apache.cordova.mediacapture.Capture"/>
             </feature>
         </config-file>
         
@@ -54,7 +54,7 @@ xmlns:android="http://schemas.android.com/apk/res/android"
             <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         </config-file>
 
-        <source-file src="src/android/Capture.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/Capture.java" target-dir="src/org/apache/cordova/mediacapture" />
     </platform>
     
     <!-- ios -->

http://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture/blob/ef2cf104/src/android/Capture.java
----------------------------------------------------------------------
diff --git a/src/android/Capture.java b/src/android/Capture.java
index a5a6ef7..31443be 100644
--- a/src/android/Capture.java
+++ b/src/android/Capture.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.mediacapture;
 
 import java.io.File;
 import java.io.FileInputStream;