2026-02-12 17:57:24 +08:00
|
|
|
|
// Develop.xcconfig - 开发/测试环境
|
|
|
|
|
|
// 用于连接测试服、预发布环境
|
|
|
|
|
|
|
|
|
|
|
|
#include "Shared.xcconfig"
|
|
|
|
|
|
|
|
|
|
|
|
// API 域名(注入 Info.plist,运行时通过 Bundle.main 读取)
|
2026-02-12 19:07:41 +08:00
|
|
|
|
API_DOMAIN = https:/$()/api.muststudy.xin
|
2026-02-12 17:57:24 +08:00
|
|
|
|
INFOPLIST_KEY_API_DOMAIN = $(API_DOMAIN)
|
|
|
|
|
|
|
|
|
|
|
|
// Swift 编译条件:代码中可用 #if API_ENV_DEVELOP
|
|
|
|
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = API_ENV_DEVELOP $(inherited)
|
|
|
|
|
|
GCC_PREPROCESSOR_DEFINITIONS = $(inherited)
|