19 lines
		
	
	
		
			683 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			683 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 SERVER_TIMEZONE = "GMT+3"
 | 
						|
    static let USER_AGENT = "yobble ios"
 | 
						|
    static let APP_BUILD = "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"
 | 
						|
}
 |