apply plugin: 'com.android.library'
|
apply from: "../app-common/build_common.gradle"
|
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android-extensions'
|
|
android {
|
compileSdkVersion 29
|
defaultConfig {
|
minSdkVersion 15
|
//noinspection ExpiredTargetSdkVersion
|
targetSdkVersion 22
|
versionCode 1
|
versionName "1.0"
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
}
|
}
|
|
dependencies {
|
// 最终依赖由Application所在的module提供
|
compileOnly 'com.ezviz.sdk:ezviz-sdk:' + EZVIZ_SDK_VERSION
|
}
|