apply plugin: 'com.android.library'
|
|
android {
|
compileSdkVersion 25
|
buildToolsVersion '26.0.2'
|
|
defaultConfig {
|
minSdkVersion 15
|
targetSdkVersion 25
|
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(dir: 'libs', include: ['*.jar'])
|
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:25.3.1'
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
testCompile 'junit:junit:4.12'
|
//对话框
|
compile 'com.afollestad.material-dialogs:commons:0.9.4.4'
|
compile 'com.alibaba:fastjson:1.1.56.android'
|
compile 'com.pnikosis:materialish-progress:1.0'
|
//compile 'cn.pedant.sweetalert:library:1.3'
|
provided 'com.google.code.gson:gson:2.8.0'
|
//下载管理和上传管理扩展,根据需要添加
|
provided 'com.lzy.net:okserver:1.1.3'
|
//banner
|
compile 'cn.bingoogolapple:bga-banner:2.1.9@aar'
|
}
|