31 lines
709 B
Groovy
31 lines
709 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'maven-publish'
|
|
apply from: '../.winboll/winboll_lib_build.gradle'
|
|
apply from: '../.winboll/winboll_lint_build.gradle'
|
|
|
|
android {
|
|
// 适配MIUI12
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// WinBoLL库 nexus.winboll.cc 地址
|
|
api 'cc.winboll.studio:libaes:15.15.9'
|
|
api 'cc.winboll.studio:libappbase:15.15.21'
|
|
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|