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/01/29 20:07:52 UTC

[25/37] js commit: [android] modulemapper refactor for navigator.app.

[android] modulemapper refactor for navigator.app.

https://issues.apache.org/jira/browse/CB-2227


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/8e933d33
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/8e933d33
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/8e933d33

Branch: refs/heads/symbolmapping
Commit: 8e933d330ad70b7b3106351af68ecc3033798ba6
Parents: 37c8b21
Author: Andrew Grieve <ag...@chromium.org>
Authored: Fri Jan 25 15:22:14 2013 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Mon Jan 28 19:56:47 2013 -0500

----------------------------------------------------------------------
 lib/android/platform.js                   |    9 ---------
 lib/android/plugin/android/app/symbols.js |   24 ++++++++++++++++++++++++
 2 files changed, 24 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/8e933d33/lib/android/platform.js
----------------------------------------------------------------------
diff --git a/lib/android/platform.js b/lib/android/platform.js
index e4e80fb..5e2cfe8 100644
--- a/lib/android/platform.js
+++ b/lib/android/platform.js
@@ -88,14 +88,5 @@ module.exports = {
         channel.join(function() {
             exec(null, null, "App", "show", []);
         }, [channel.onCordovaReady]);
-    },
-    clobbers: {
-        navigator: {
-            children: {
-                app:{
-                    path: "cordova/plugin/android/app"
-                }
-            }
-        }
     }
 };

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/8e933d33/lib/android/plugin/android/app/symbols.js
----------------------------------------------------------------------
diff --git a/lib/android/plugin/android/app/symbols.js b/lib/android/plugin/android/app/symbols.js
new file mode 100644
index 0000000..d75c58f
--- /dev/null
+++ b/lib/android/plugin/android/app/symbols.js
@@ -0,0 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+*/
+
+
+var modulemapper = require('cordova/modulemapper');
+
+modulemapper.clobbers('cordova/plugin/android/app', 'navigator.app');