yozm -> sodalive 로 변경
This commit is contained in:
parent
a22a3ebf6c
commit
8e23f65086
|
@ -13,7 +13,7 @@ class ObjectBoxService {
|
|||
let playbackTrackingBox: Box<PlaybackTracking>
|
||||
|
||||
init() {
|
||||
let databaseName = "yozmlive"
|
||||
let databaseName = "sodalive"
|
||||
let appSupport = try! FileManager.default.url(for: .applicationSupportDirectory,
|
||||
in: .userDomainMask,
|
||||
appropriateFor: nil,
|
||||
|
|
|
@ -58,7 +58,7 @@ struct SodaLiveApp: App {
|
|||
.onOpenURL { url in
|
||||
DEBUG_LOG("I have received a URL through a custom scheme! \(url.absoluteString)")
|
||||
if let scheme = url.scheme {
|
||||
if scheme == "kr.co.vividnext.yozm" {
|
||||
if scheme == "kr.co.vividnext.sodalive" {
|
||||
if let dynamicLink = DynamicLinks.dynamicLinks().dynamicLink(fromCustomSchemeURL: url) {
|
||||
self.handleIncomingDynamicLink(dynamicLink)
|
||||
} else {
|
||||
|
|
|
@ -42,11 +42,11 @@ struct ContentMainNewContentView_Previews: PreviewProvider {
|
|||
items: [
|
||||
GetAudioContentMainItem(
|
||||
contentId: 1,
|
||||
coverImageUrl: "https://test-cf.yozm.day/audio_content_cover/31/31-cover-e78575f9-7624-471c-8102-1289a5748aae-5983-1684487894269",
|
||||
coverImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
title: "테스트",
|
||||
isAdult: false,
|
||||
creatorId: 7,
|
||||
creatorProfileImageUrl: "https://test-cf.yozm.day/profile/7f73168e-220f-482f-b97d-baab63b70e04IMG_20220314_220855522.jpg",
|
||||
creatorProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
creatorNickname: "유저1"
|
||||
)
|
||||
],
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
import Foundation
|
||||
|
||||
let BASE_URL = "https://test-api.sodalive.net"
|
||||
let APPLY_YOZM_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
|
||||
let APPLY_SODALIVE_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
|
||||
|
||||
let AGORA_APP_ID = "b96574e191a9430fa54c605528aa3ef7"
|
||||
let AGORA_APP_CERTIFICATE = "ae18ade3afcf4086bd4397726eb0654c"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// DateExtension.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/05/27.
|
||||
//
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// IntExtension.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/06/21.
|
||||
//
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// StringExtension.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/06/03.
|
||||
//
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// UserDefaultsExtension.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/05/20.
|
||||
//
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// ViewExtension.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/05/19.
|
||||
//
|
||||
|
|
|
@ -31,7 +31,7 @@ struct LiveView: View {
|
|||
.padding(.top, 13.3)
|
||||
}
|
||||
|
||||
if let url = URL(string: "https://blog.naver.com/yozmlive"),
|
||||
if let url = URL(string: "https://blog.naver.com/sodalive_official"),
|
||||
UIApplication.shared.canOpenURL(url) {
|
||||
Image("img_how_to_use")
|
||||
.resizable()
|
||||
|
|
|
@ -54,9 +54,9 @@ struct TextMessageItemView_Previews: PreviewProvider {
|
|||
messageId: 18,
|
||||
senderId: 19,
|
||||
senderNickname: "user8",
|
||||
senderProfileImageUrl: "https://test-cf.yozm.day/profile/default_profile.png",
|
||||
senderProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
recipientNickname: "uset7",
|
||||
recipientProfileImageUrl: "https://test-cf.yozm.day/profile/default_profile.png",
|
||||
recipientProfileImageUrl: "https://test-cf.sodalive.net/profile/default-profile.png",
|
||||
textMessage: "ㅅㅅㅅㅅㅅㅅㅅㅅ러러러라라가가각개가사러",
|
||||
date: "2022-05-23 16:15:22",
|
||||
isKept: false
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
import Foundation
|
||||
|
||||
let BASE_URL = "https://api.sodalive.net"
|
||||
let APPLY_YOZM_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
|
||||
let APPLY_SODALIVE_CREATOR = "https://forms.gle/mmhJKmijjVRnwtdZ7"
|
||||
|
||||
let AGORA_APP_ID = "e34e40046e9847baba3adfe2b8ffb4f6"
|
||||
let AGORA_APP_CERTIFICATE = "15cadeea4ba94ff7b091c9a10f4bf4a6"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
//
|
||||
// Log.swift
|
||||
// yozm
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2022/05/20.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue