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:44:40 UTC

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

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


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/9f934235
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/9f934235
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/9f934235

Branch: refs/heads/dev
Commit: 9f934235967987c6a574c6d337a0292dfda9c82e
Parents: a13d215
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:44:36 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/9f934235/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index 1c8b2e2..a549645 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -17,11 +17,11 @@
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
             <feature name="InAppBrowser"> 
-                <param name="android-package" value="org.apache.cordova.core.InAppBrowser"/>
+                <param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
             </feature>
         </config-file>
 
-        <source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/core" />
+        <source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser" />
     </platform>
     
     <!-- ios -->

http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/9f934235/src/android/InAppBrowser.java
----------------------------------------------------------------------
diff --git a/src/android/InAppBrowser.java b/src/android/InAppBrowser.java
index 581a4a0..ebd7736 100644
--- a/src/android/InAppBrowser.java
+++ b/src/android/InAppBrowser.java
@@ -16,7 +16,7 @@
        specific language governing permissions and limitations
        under the License.
 */
-package org.apache.cordova.core;
+package org.apache.cordova.inappbrowser;
 
 import java.util.HashMap;
 import java.util.StringTokenizer;