Android Studio 플러그인 - DebugLog 인쇄 메소드 실행 시간

1079 단어
DebugLog 인쇄 방법 실행 시간
성능 문제를 쉽게 디버깅할 수 있는 인쇄 플러그인입니다.방문법에 @DebugLog를 추가하면 이 방법의 호출 매개 변수와 실행 시간을 출력할 수 있습니다.
Project gradle 구성
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0'

        //               。     @DebugLog,            ,      
        classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'

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

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}

Application module gradle 구성
apply plugin: 'com.android.application'
//               。     @DebugLog,            ,      
apply plugin: 'com.jakewharton.hugo'

repositories {
    flatDir {
        dirs 'libs'
    }
    mavenCentral()
    jcenter()
}

좋은 웹페이지 즐겨찾기