ios_app_v2/yobble/config.swift
2025-10-21 02:39:48 +03:00

20 lines
711 B
Swift

import SwiftUI
struct AppConfig {
static var DEBUG: Bool = true
//static let SERVICE = Bundle.main.bundleIdentifier ?? "default.service"
static let PROTOCOL = "https"
static let API_SERVER = "\(PROTOCOL)://api.yobble.org"
static let SOCKET_PATH = "/socket.io/"
static let USER_AGENT = "yobble ios"
static let APP_BUILD = "appstore" // appstore / freestore
static let APP_VERSION = "0.1"
}
struct AppInfo {
static let text_1 = "\(NSLocalizedString("profile_down_text_1", comment: "")) yobble"
static let text_2 = "\(NSLocalizedString("profile_down_text_2", comment: "")) 0.1test"
static let text_3 = "\(NSLocalizedString("profile_down_text_3", comment: ""))2025"
}