-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (45 loc) · 1.79 KB
/
build.gradle
File metadata and controls
49 lines (45 loc) · 1.79 KB
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
40
41
42
43
44
45
46
47
48
apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.tencent.mlvb.apiexample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 24
versionName "12.7.0.5572"
multiDexEnabled true
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.multidex:multidex:2.0.0'
implementation rootProject.ext.liteavSdk
implementation project(':Debug')
implementation project(':Basic:LivePushCamera')
implementation project(':Basic:LivePushScreen')
implementation project(':Basic:LivePlay')
implementation project(':Basic:LebPlay')
implementation project(':Basic:LiveLink')
implementation project(':Basic:LivePK')
implementation project(':Advanced:SwitchRenderView')
implementation project(':Advanced:ThirdBeauty')
implementation project(':Advanced:RTCPushAndPlay')
implementation project(':Advanced:CustomVideoCapture')
implementation project(':Advanced:LebAutoBitrate')
implementation project(':Advanced:HlsAutoBitrate')
implementation project(':Advanced:TimeShift')
implementation project(':Advanced:NewTimeShiftSprite')
implementation project(':Advanced:PictureInPicture')
}