Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9864911880 for ; Mon, 9 Jun 2014 02:55:01 +0000 (UTC) Received: (qmail 83852 invoked by uid 500); 9 Jun 2014 02:55:01 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 83800 invoked by uid 500); 9 Jun 2014 02:55:01 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 83789 invoked by uid 99); 9 Jun 2014 02:55:01 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Jun 2014 02:55:01 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0462B8B232E; Mon, 9 Jun 2014 02:55:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agrieve@apache.org To: commits@cordova.apache.org Date: Mon, 09 Jun 2014 02:55:00 -0000 Message-Id: <360c80c13ea44a73b3495712a2730333@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/18] android commit: CB-5652 make visible cordova version Repository: cordova-android Updated Branches: refs/heads/4.0.x d5e880775 -> 6abb9da88 refs/heads/master 32e07c22d -> b40764104 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/4.0.x Commit: 1deefa48eef2a15c9929093a24b5717a5d4b7074 Parents: 50c4aef Author: Martin Gonzalez Authored: Thu May 15 11:55:42 2014 -0500 Committer: Marcel Kinard 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);