File tree Expand file tree Collapse file tree
Projects/BKPresentation/Sources/Constant Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Copyright © 2026 Booket. All rights reserved
2+
3+ import Foundation
4+
5+ private final class PresentationBundleToken { }
6+
7+ public enum URLConstants {
8+ private static let bundle = Bundle ( for: PresentationBundleToken . self)
9+
10+ private static let kakaoAccount : String = {
11+ guard let value = bundle. object ( forInfoDictionaryKey: " KAKAO_ACCOUNT " ) as? String else {
12+ fatalError ( " Can't load KAKAO_ACCOUNT " )
13+ }
14+ return value
15+ } ( )
16+
17+ public static let kakaoAppScheme = " kakaoplus://plusfriend/home/ \( kakaoAccount) "
18+ public static let kakaoChatURL = " https://pf.kakao.com/ \( kakaoAccount) /chat "
19+ }
Original file line number Diff line number Diff line change 4343 <false />
4444 <key >KAKAO_NATIVE_APP_KEY </key >
4545 <string >$(KAKAO_NATIVE_APP_KEY) </string >
46- <key >KAKAO_CHAT_URL </key >
47- <string >$(KAKAO_CHAT_URL ) </string >
46+ <key >KAKAO_ACCOUNT </key >
47+ <string >$(KAKAO_ACCOUNT ) </string >
4848 <key >LSApplicationQueriesSchemes </key >
4949 <array >
5050 <string >kakaokompassauth </string >
You can’t perform that action at this time.
0 commit comments