apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 26
|
defaultConfig {
|
applicationId "com.moral.screen"
|
minSdkVersion 15
|
targetSdkVersion 22
|
versionCode 1
|
versionName "1.0"
|
multiDexEnabled true
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
}
|
|
dependencies {
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
compile 'junit:junit:4.12'
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
exclude group: 'com.android.support', module: 'support-annotations'
|
})
|
//下拉刷新
|
compile 'in.srain.cube:ultra-ptr:1.0.11'
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
//网络请求
|
compile 'com.lzy.net:okgo:2.1.4'
|
compile 'com.lzy.net:okserver:1.1.3'
|
compile 'org.greenrobot:eventbus:3.0.0'
|
compile project(':andbrickslib')
|
compile('com.github.niorgai:StatusBarCompat:2.1.4', {
|
exclude group: 'com.android.support'
|
})
|
}
|