You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by br...@apache.org on 2013/01/11 18:14:03 UTC

[3/4] android commit: Added a comment to explain where the start page is getting set.

Added a comment to explain where the start page is getting set.


Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/913e177f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/913e177f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/913e177f

Branch: refs/heads/master
Commit: 913e177f6f796dab8413df26c08d56fe2d732767
Parents: ae431ae
Author: Braden Shepherdson <br...@chromium.org>
Authored: Wed Jan 9 17:36:12 2013 -0500
Committer: Braden Shepherdson <br...@chromium.org>
Committed: Wed Jan 9 17:36:12 2013 -0500

----------------------------------------------------------------------
 bin/templates/project/Activity.java |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/913e177f/bin/templates/project/Activity.java
----------------------------------------------------------------------
diff --git a/bin/templates/project/Activity.java b/bin/templates/project/Activity.java
index 0f42d8e..2312322 100644
--- a/bin/templates/project/Activity.java
+++ b/bin/templates/project/Activity.java
@@ -29,6 +29,7 @@ public class __ACTIVITY__ extends DroidGap
     {
         super.onCreate(savedInstanceState);
         Config.init(this);
+        // Set by <content src="index.html" /> in config.xml
         super.loadUrl(Config.getStartUrl());
         //super.loadUrl("file:///android_asset/www/index.html")
     }