
- 修改Package.swift以支持iOS 15和macOS 12。 - 更新swift-tca-architecture-guidelines.mdc中的alwaysApply设置为false。 - 注释掉AppDelegate中的NIMSDK导入,移除不再使用的NIMConfigurationManager和NIMSessionManager文件。 - 添加新的API相关文件,包括EMailLoginFeature、IDLoginFeature和相关视图,增强登录功能。 - 更新APIConstants和APIEndpoints以反映新的API路径。 - 添加本地化支持文件,包含英文和中文简体的本地化字符串。 - 新增字体管理和安全工具类,支持AES和DES加密。 - 更新Xcode项目配置,调整版本号和启动画面设置。
79 lines
1.9 KiB
Swift
79 lines
1.9 KiB
Swift
enum Environment {
|
||
case development
|
||
case production
|
||
}
|
||
|
||
struct AppConfig {
|
||
static var current: Environment = {
|
||
#if DEBUG
|
||
return .development
|
||
#else
|
||
return .production
|
||
#endif
|
||
}()
|
||
|
||
static var baseURL: String {
|
||
switch current {
|
||
case .development:
|
||
// return "http://192.168.10.211:8080"
|
||
return "http://beta.api.molistar.xyz"
|
||
case .production:
|
||
return "https://api.epartylive.com"
|
||
}
|
||
}
|
||
|
||
/// Web页面路径前缀
|
||
/// - development环境: "/molistar"
|
||
/// - production环境: "/eparty"
|
||
static var webPathPrefix: String {
|
||
switch current {
|
||
case .development:
|
||
return "/molistar"
|
||
case .production:
|
||
return "/eparty"
|
||
}
|
||
}
|
||
|
||
// 添加更多环境变量
|
||
static var analyticsKey: String {
|
||
switch current {
|
||
case .development: return "dev_analytics_key"
|
||
case .production: return "prod_analytics_key"
|
||
}
|
||
}
|
||
|
||
// 运行时切换环境(用于测试)
|
||
static func switchEnvironment(to env: Environment) {
|
||
current = env
|
||
}
|
||
|
||
// 网络调试配置
|
||
static var enableNetworkDebug: Bool {
|
||
switch current {
|
||
case .development:
|
||
return true
|
||
case .production:
|
||
return false
|
||
}
|
||
}
|
||
|
||
// 服务器信任配置
|
||
static var serverTrustPolicies: [String: ServerTrustEvaluating] {
|
||
switch current {
|
||
case .development:
|
||
return ["beta.api.molistar.xyz": DisabledTrustEvaluator()]
|
||
case .production:
|
||
return ["api.epartylive.com": PublicKeysTrustEvaluator()]
|
||
}
|
||
}
|
||
|
||
static var networkDebugEnabled: Bool {
|
||
switch current {
|
||
case .development:
|
||
return true
|
||
case .production:
|
||
return false
|
||
}
|
||
}
|
||
}
|