apply plugin: 'com.android.library'
|
apply from: "../app-common/build_common.gradle"
|
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android-extensions'
|
apply plugin:'com.kezong.fat-aar'
|
|
android {
|
compileSdkVersion 29
|
defaultConfig {
|
minSdkVersion 16
|
targetSdkVersion 28
|
versionCode 1
|
versionName "1.0"
|
ndk {
|
abiFilters "armeabi-v7a", "arm64-v8a"
|
}
|
}
|
buildTypes {
|
debug {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
compileOptions {
|
sourceCompatibility 1.8
|
targetCompatibility 1.8
|
}
|
}
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
embed(name:'ezviz-sdk-4.14.0', ext: 'aar')
|
embed(name:'videotalk-1.0.0', ext: 'aar')
|
embed(name:'app-common-debug', ext: 'aar')
|
embed(name:'streamctrl-1.0.0', ext: 'aar')
|
embed(name:'arouter-api-1.5.0', ext: 'aar')
|
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
|
}
|