라이브룸 상세/태그 다이얼로그 문자열 리소스화

This commit is contained in:
2025-12-02 18:58:18 +09:00
parent 6bd63fc751
commit af04ff9bf7
9 changed files with 101 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
package kr.co.vividnext.sodalive.common
import android.app.Application
object SodaLiveApplicationHolder {
private lateinit var application: Application
fun init(app: Application) {
application = app
}
fun get(): Application = application
}