You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
apply plugin: 'com.android.library'
|
|
//apply plugin: 'img-optimizer'
|
|
|
|
android {
|
|
namespace 'com.xuexiang.xui'
|
|
compileSdk rootProject.ext.version.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdk rootProject.ext.version.minSdkVersion
|
|
targetSdk rootProject.ext.version.targetSdkVersion
|
|
versionCode rootProject.ext.version.versionCode
|
|
versionName rootProject.ext.version.versionName
|
|
vectorDrawables.useSupportLibrary = true
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles "consumer-rules.pro"
|
|
}
|
|
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(rootProject.ext.libsDependency.appcompat)
|
|
implementation(rootProject.ext.libsDependency.material)
|
|
implementation(rootProject.ext.libsDependency.constraintlayout)
|
|
implementation(rootProject.ext.libsDependency.junit)
|
|
implementation(rootProject.ext.libsDependency.ext_junit)
|
|
implementation(rootProject.ext.libsDependency.espresso_core)
|
|
|
|
api 'com.github.bumptech.glide:glide:4.16.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
|
|
api 'io.github.inflationx:calligraphy3:3.1.1'
|
|
api 'io.github.inflationx:viewpump:2.1.1'
|
|
}
|
|
|
|
|