딥링크 로그 문자열 리소스화
This commit is contained in:
@@ -15,6 +15,7 @@ import com.kakao.sdk.common.KakaoSdk
|
|||||||
import com.orhanobut.logger.AndroidLogAdapter
|
import com.orhanobut.logger.AndroidLogAdapter
|
||||||
import com.orhanobut.logger.Logger
|
import com.orhanobut.logger.Logger
|
||||||
import kr.co.vividnext.sodalive.BuildConfig
|
import kr.co.vividnext.sodalive.BuildConfig
|
||||||
|
import kr.co.vividnext.sodalive.R
|
||||||
import kr.co.vividnext.sodalive.common.ImageLoaderProvider
|
import kr.co.vividnext.sodalive.common.ImageLoaderProvider
|
||||||
import kr.co.vividnext.sodalive.common.SharedPreferenceManager
|
import kr.co.vividnext.sodalive.common.SharedPreferenceManager
|
||||||
import kr.co.vividnext.sodalive.common.SodaLiveApplicationHolder
|
import kr.co.vividnext.sodalive.common.SodaLiveApplicationHolder
|
||||||
@@ -110,8 +111,13 @@ class SodaLiveApp : Application(), DefaultLifecycleObserver {
|
|||||||
logUtmInFirebase()
|
logUtmInFirebase()
|
||||||
}
|
}
|
||||||
|
|
||||||
DeepLinkResult.Status.NOT_FOUND -> Logger.d("딥링크를 찾을 수 없습니다.")
|
DeepLinkResult.Status.NOT_FOUND -> Logger.d(
|
||||||
DeepLinkResult.Status.ERROR -> Logger.d("딥링크 처리 중 오류 발생: ${deepLinkResult.error}")
|
getString(R.string.deeplink_not_found)
|
||||||
|
)
|
||||||
|
|
||||||
|
DeepLinkResult.Status.ERROR -> Logger.d(
|
||||||
|
getString(R.string.deeplink_error, deepLinkResult.error)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -149,6 +149,8 @@
|
|||||||
<string name="auth_title">Identity verification</string>
|
<string name="auth_title">Identity verification</string>
|
||||||
<string name="auth_desc">VoiceOn open-world character chat is available only to verified adults to protect youth.\nPlease verify your identity to use the service.</string>
|
<string name="auth_desc">VoiceOn open-world character chat is available only to verified adults to protect youth.\nPlease verify your identity to use the service.</string>
|
||||||
<string name="auth_go">Verify now</string>
|
<string name="auth_go">Verify now</string>
|
||||||
|
<string name="deeplink_not_found">Failed to find deep link.</string>
|
||||||
|
<string name="deeplink_error">Deep link processing error: %1$s</string>
|
||||||
<string name="day_mon_short">Mon</string>
|
<string name="day_mon_short">Mon</string>
|
||||||
<string name="day_tue_short">Tue</string>
|
<string name="day_tue_short">Tue</string>
|
||||||
<string name="day_wed_short">Wed</string>
|
<string name="day_wed_short">Wed</string>
|
||||||
|
|||||||
@@ -149,6 +149,8 @@
|
|||||||
<string name="auth_title">本人認証</string>
|
<string name="auth_title">本人認証</string>
|
||||||
<string name="auth_desc">ボイスオンのオープンワールドキャラクタートークは、青少年保護のため本人認証済みの成人のみ利用できます。\n利用するには本人認証を行ってください。</string>
|
<string name="auth_desc">ボイスオンのオープンワールドキャラクタートークは、青少年保護のため本人認証済みの成人のみ利用できます。\n利用するには本人認証を行ってください。</string>
|
||||||
<string name="auth_go">本人認証へ進む</string>
|
<string name="auth_go">本人認証へ進む</string>
|
||||||
|
<string name="deeplink_not_found">ディープリンクが見つかりませんでした。</string>
|
||||||
|
<string name="deeplink_error">ディープリンク処理中にエラーが発生しました: %1$s</string>
|
||||||
<string name="day_mon_short">月</string>
|
<string name="day_mon_short">月</string>
|
||||||
<string name="day_tue_short">火</string>
|
<string name="day_tue_short">火</string>
|
||||||
<string name="day_wed_short">水</string>
|
<string name="day_wed_short">水</string>
|
||||||
|
|||||||
@@ -148,6 +148,8 @@
|
|||||||
<string name="auth_title">본인인증</string>
|
<string name="auth_title">본인인증</string>
|
||||||
<string name="auth_desc">보이스온의 오픈월드 캐릭터톡은\n청소년 보호를 위해 본인인증한\n성인만 이용이 가능합니다.\n캐릭터톡 서비스를 이용하시려면\n본인인증을 하고 이용해주세요.</string>
|
<string name="auth_desc">보이스온의 오픈월드 캐릭터톡은\n청소년 보호를 위해 본인인증한\n성인만 이용이 가능합니다.\n캐릭터톡 서비스를 이용하시려면\n본인인증을 하고 이용해주세요.</string>
|
||||||
<string name="auth_go">본인인증 하러가기</string>
|
<string name="auth_go">본인인증 하러가기</string>
|
||||||
|
<string name="deeplink_not_found">딥링크를 찾을 수 없습니다.</string>
|
||||||
|
<string name="deeplink_error">딥링크 처리 중 오류 발생: %1$s</string>
|
||||||
<string name="day_mon_short">월</string>
|
<string name="day_mon_short">월</string>
|
||||||
<string name="day_tue_short">화</string>
|
<string name="day_tue_short">화</string>
|
||||||
<string name="day_wed_short">수</string>
|
<string name="day_wed_short">수</string>
|
||||||
|
|||||||
Reference in New Issue
Block a user