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

[8/10] 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/55074b92
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/55074b92
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/55074b92

Branch: refs/heads/master
Commit: 55074b925f832392c1f9e42e4a28f991edefeb77
Parents: 958424c
Author: Braden Shepherdson <br...@chromium.org>
Authored: Wed Jan 9 17:36:12 2013 -0500
Committer: Joe Bowser <bo...@apache.org>
Committed: Fri Jan 11 10:24:03 2013 -0800

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


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/55074b92/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")
     }