Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 757 Bytes

File metadata and controls

34 lines (28 loc) · 757 Bytes

AndroidCommonLib

Android Common Library

  • Logcat를 파일로 redirect 하는 기능

Library 사용법

repository 추가

allprojects {
    repositories {
        jcenter()

        maven {
            url "https://jitpack.io"
        }
    }
}

dependency 추가

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'

    // for internal module
    // compile project(':common')

    // for JitPack.io repository
    compile 'com.github.guriguri:AndroidCommonLib:-SNAPSHOT'
}