日志打印

在做开发的时候总会为了查看参数是否正确而进行log的打印。
推荐使用GitHub地址,
使用的方法:在项目的gradle添加


buildscript {
    repositories {
        jcenter()
        mavenCentral()//这里
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
        classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'//这里
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        flatDir {
            dirs 'libs'
        }
        maven {
            url "https://s3.amazonaws.com/repo.commonsware.com"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

ext {
    supportLibVersion = "24.1.1"
    testRunnerVersion = "0.5"
    espressoVersion = "2.2.2"
}

以及在我们的modul里添加:
apply plugin: ‘com.jakewharton.hugo’

你可能感兴趣的:(日志打印)