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 2017/08/24 09:57:13 UTC

incubator-weex git commit: * [android] Add com.getkeepsafe.dexcount to extract method count.

Repository: incubator-weex
Updated Branches:
  refs/heads/0.16-dev a46adce11 -> aa5bb7b58


 * [android] Add com.getkeepsafe.dexcount to extract method count.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/aa5bb7b5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/aa5bb7b5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/aa5bb7b5

Branch: refs/heads/0.16-dev
Commit: aa5bb7b586e6ebab58ea67dafc2623d99ac8c42b
Parents: a46adce
Author: YorkShen <sh...@gmail.com>
Authored: Thu Aug 24 17:57:19 2017 +0800
Committer: YorkShen <sh...@gmail.com>
Committed: Thu Aug 24 17:57:19 2017 +0800

----------------------------------------------------------------------
 android/sdk/build.gradle | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/aa5bb7b5/android/sdk/build.gradle
----------------------------------------------------------------------
diff --git a/android/sdk/build.gradle b/android/sdk/build.gradle
index 5131a4f..0be69fb 100755
--- a/android/sdk/build.gradle
+++ b/android/sdk/build.gradle
@@ -1,5 +1,10 @@
 buildscript {
+    repositories {
+        mavenCentral()
+    }
+
     dependencies {
+        classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.3'
         classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0'
     }
 }
@@ -10,6 +15,7 @@ plugins {
 
 apply plugin: 'com.android.library'
 apply plugin: 'checkstyle'
+apply plugin: 'com.getkeepsafe.dexcount'
 
 ext.disableCov = project.hasProperty('disableCov') ? project.getProperty('disableCov') : 'false'
 if(!disableCov.toBoolean()){