|
|
apply plugin: 'com.android.application'
|
|
|
apply plugin: 'android-apt'
|
|
|
|
|
|
android {
|
|
|
compileSdkVersion 26
|
|
|
buildToolsVersion "26.0.0"
|
|
|
defaultConfig {
|
|
|
applicationId "com.qhclh.ytzh"
|
|
|
minSdkVersion 15
|
|
|
targetSdkVersion 26
|
|
|
versionCode 1
|
|
|
versionName "1.0"
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
}
|
|
|
buildTypes {
|
|
|
release {
|
|
|
minifyEnabled false
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
})
|
|
|
compile 'com.android.support:appcompat-v7:26.+'
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
compile 'com.jakewharton:butterknife:8.4.0'
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.4.0'
|
|
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
|
|
compile 'com.android.support:support-v4:26.0.0-alpha1'
|
|
|
compile 'com.android.support:design:26.0.0-alpha1'
|
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
|
|
compile 'com.umeng.analytics:analytics:latest.integration'
|
|
|
compile 'pub.devrel:easypermissions:0.2.1'
|
|
|
compile 'com.google.code.gson:gson:2.8.1'
|
|
|
compile 'org.litepal.android:core:1.3.0'
|
|
|
compile 'com.journeyapps:zxing-android-embedded:3.5.0'
|
|
|
compile 'com.google.zxing:core:3.3.0'
|
|
|
compile project(':jsonrpc')
|
|
|
}
|