1234567891011121314151617181920212223242526272829303132333435363738394041 |
- plugins {
- id 'com.android.library'
- }
- android {
- namespace "com.trtc.uikit.livekit"
- compileSdkVersion 29
- defaultConfig {
- minSdkVersion 19
- versionName "1.0"
- versionCode 1
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- api 'androidx.appcompat:appcompat:1.3.1'
- api 'com.google.android.material:material:1.4.0'
- api 'androidx.constraintlayout:constraintlayout:2.1.1'
- api 'androidx.gridlayout:gridlayout:1.0.0'
- api "com.google.code.gson:gson:2.8.6"
- implementation 'androidx.recyclerview:recyclerview:1.2.1'
- implementation 'com.github.yyued:SVGAPlayer-Android:2.6.1'
- api 'io.trtc.uikit:common:1.0.0.150'
- api 'io.trtc.uikit:rtc_room_engine:latest.release'
- api "com.tencent.liteav:LiteAVSDK_TRTC:latest.release"
- api "com.tencent.imsdk:imsdk-plus:latest.release"
- api "com.tencent.liteav.tuikit:tuicore:latest.release"
- }
|