wxr
2023-04-11 cd70a2a8a2bdebf51259d8f39ed110a34b9be9e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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'
}