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/16 18:50:37 UTC

[4/4] git commit: [CB-4474] Unbreak globalization plugin on Android

[CB-4474] Unbreak globalization plugin on Android

By fixing the package name in plugin.xml


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/commit/818ef071
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/tree/818ef071
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/diff/818ef071

Branch: refs/heads/dev
Commit: 818ef0711eb9193f2e5607e796fd97ac835ffde1
Parents: 5ba0900
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Aug 16 12:49:49 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Fri Aug 16 12:49:49 2013 -0400

----------------------------------------------------------------------
 plugin.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization/blob/818ef071/plugin.xml
----------------------------------------------------------------------
diff --git a/plugin.xml b/plugin.xml
index a153458..a72db50 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -19,7 +19,9 @@
     <!-- android -->
     <platform name="android">
         <config-file target="res/xml/config.xml" parent="/*">
-            <feature name="Globalization" value="org.apache.cordova.globalization.globalization"/>
+            <feature name="Globalization">
+                <param name="android-package" value="org.apache.cordova.globalization.Globalization" />
+            </feature>
         </config-file>
 
         <source-file src="src/android/Globalization.java" target-dir="src/org/apache/cordova/globalization" />