-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (52 loc) · 2.16 KB
/
build.gradle
File metadata and controls
55 lines (52 loc) · 2.16 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
49
50
51
52
53
54
55
apply plugin: 'com.android.application'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.tencent.trtc.api_example"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 24
versionName "12.5.0.5368"
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 'com.android.support:multidex:1.0.1'
implementation "com.blankj:utilcode:1.30.7"
implementation 'io.github.uu-code007:lib_pixelFree:2.4.9'
implementation project(':Basic:Live')
implementation project(':Basic:VideoCall')
implementation project(':Basic:ScreenShare')
implementation project(':Basic:AudioCall')
implementation project(':Basic:VoiceChatRoom')
implementation project(':Advanced:SetAudioQuality')
implementation project(':Advanced:SetVideoQuality')
implementation project(':Advanced:SetAudioEffect')
implementation project(':Advanced:SetRenderParams')
implementation project(':Advanced:SetBackgroundMusic')
implementation project(':Advanced:SwitchRoom')
implementation project(':Advanced:RoomPk')
implementation project(':Advanced:SpeedTest')
implementation project(':Advanced:PushCDN')
implementation project(':Advanced:SEIMessage')
implementation project(':Advanced:ThirdBeauty')
implementation project(':Advanced:JoinMultipleRoom')
implementation project(':Advanced:LocalVideoShare')
implementation project(':Advanced:LocalRecord')
implementation project(':Advanced:StringRoomId')
implementation project(':Advanced:PushCDN')
implementation project(':Advanced:CustomCamera')
}