You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ky...@apache.org on 2018/11/20 03:52:48 UTC

[incubator-weex] branch master updated: [android] move testCoverageEnabled = true config to debug mode (#1779)

This is an automated email from the ASF dual-hosted git repository.

kyork pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-weex.git


The following commit(s) were added to refs/heads/master by this push:
     new ef2f0c6  [android] move testCoverageEnabled = true config to debug mode (#1779)
ef2f0c6 is described below

commit ef2f0c60924373d4f9ecad87fa1a9e32a177f128
Author: zshshr <zh...@gmail.com>
AuthorDate: Tue Nov 20 11:52:44 2018 +0800

    [android] move testCoverageEnabled = true config to debug mode (#1779)
---
 android/sdk/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/android/sdk/build.gradle b/android/sdk/build.gradle
index 476d673..bcba454 100755
--- a/android/sdk/build.gradle
+++ b/android/sdk/build.gradle
@@ -132,7 +132,6 @@ android {
     buildTypes {
         release {
             minifyEnabled false
-            testCoverageEnabled true
             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
             buildConfigField "boolean", "ENABLE_TRACE", "false"
             consumerProguardFiles 'proguard-rules.pro'
@@ -142,6 +141,7 @@ android {
             buildConfigField "boolean", "ENABLE_TRACE", "true"
             jniDebuggable true
             debuggable true
+            testCoverageEnabled true
             consumerProguardFiles 'proguard-rules.pro'
         }
     }