2016-05-23 16:26:42 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 23
|
|
|
|
|
buildToolsVersion "23.0.3"
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2016-07-26 19:31:10 +08:00
|
|
|
minSdkVersion 14
|
2016-05-23 16:26:42 +08:00
|
|
|
targetSdkVersion 22
|
|
|
|
|
versionCode 1
|
|
|
|
|
versionName "1.0"
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
|
compile 'com.android.support:appcompat-v7:23.3.0'
|
|
|
|
|
compile 'com.zhy:autolayout:1.4.3'
|
|
|
|
|
compile 'com.orhanobut:logger:1.8'
|
|
|
|
|
compile 'org.xutils:xutils:3.3.34'
|
|
|
|
|
compile 'com.android.support:recyclerview-v7:23.3.0'
|
|
|
|
|
compile 'com.linglongxin24:UncaughtExceptionSendEmail:1.0.0'
|
2016-08-24 10:24:04 +08:00
|
|
|
// debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4-beta2'
|
|
|
|
|
// releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
|
|
|
|
|
// testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4-beta2'
|
2016-06-06 16:41:06 +08:00
|
|
|
compile 'com.android.support:design:23.4.0'
|
2016-05-23 16:26:42 +08:00
|
|
|
}
|