You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2014/05/19 17:11:20 UTC

android commit: CB-5652 make visible cordova version

Repository: cordova-android
Updated Branches:
  refs/heads/master 50c4aef87 -> 1deefa48e


CB-5652 make visible cordova version

Log the cordova version using version string from CordovaWebView.java

This closes #101


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

Branch: refs/heads/master
Commit: 1deefa48eef2a15c9929093a24b5717a5d4b7074
Parents: 50c4aef
Author: Martin Gonzalez <ma...@gmail.com>
Authored: Thu May 15 11:55:42 2014 -0500
Committer: Marcel Kinard <cm...@gmail.com>
Committed: Mon May 19 11:10:58 2014 -0400

----------------------------------------------------------------------
 framework/src/org/apache/cordova/CordovaActivity.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/1deefa48/framework/src/org/apache/cordova/CordovaActivity.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java
index 9f8b020..a2610c5 100755
--- a/framework/src/org/apache/cordova/CordovaActivity.java
+++ b/framework/src/org/apache/cordova/CordovaActivity.java
@@ -214,6 +214,7 @@ public class CordovaActivity extends Activity implements CordovaInterface {
     @Override
     public void onCreate(Bundle savedInstanceState) {
         Config.init(this);
+        LOG.i(TAG, "Apache Cordova native platform version " + appView.CORDOVA_VERSION + " is starting");
         LOG.d(TAG, "CordovaActivity.onCreate()");
         super.onCreate(savedInstanceState);