live-room(agora): rtm version 1.5.3 -> 2.2.6

This commit is contained in:
2025-10-29 01:55:30 +09:00
parent f08c481807
commit 1ca6d068d0
4 changed files with 864 additions and 655 deletions

View File

@@ -32,6 +32,33 @@ android {
includeInBundle = false
}
packaging {
// JNI(.so) 관련
jniLibs {
// pickFirsts: 충돌 시 첫 파일만 채택
pickFirsts += ["**/libaosl.so"]
}
// 일반 리소스(META-INF 등) 관련
resources {
// pickFirsts: 충돌 시 첫 파일만 채택
pickFirsts += [
"META-INF/LICENSE.txt",
"META-INF/NOTICE*"
]
// 자주 쓰는 제외/병합 예시
excludes += [
"META-INF/DEPENDENCIES",
"META-INF/AL2.0",
"META-INF/LGPL2.1"
]
merges += [
"META-INF/services/**"
]
}
}
defaultConfig {
applicationId "kr.co.vividnext.sodalive"
minSdk 23
@@ -168,8 +195,8 @@ dependencies {
implementation "io.github.bootpay:android:4.4.3"
// agora
implementation "io.agora.rtc:voice-sdk:4.6.0"
implementation 'io.agora.rtm:rtm-sdk:1.5.3'
implementation "io.agora.rtc:voice-sdk:4.2.6"
implementation 'io.agora:agora-rtm:2.2.6'
// Glide
implementation 'com.github.bumptech.glide:glide:5.0.5'