001project_wildgrowth/ios/WildGrowth/Config/Online.xcconfig

13 lines
447 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Online.xcconfig - 线上生产环境
// 用于 Release 打包、TestFlight、App Store
#include "Shared.xcconfig"
// API 域名(注入 Info.plist运行时通过 Bundle.main 读取)
API_DOMAIN = https://wildgrowth.upolar.com
INFOPLIST_KEY_API_DOMAIN = $(API_DOMAIN)
// Swift 编译条件:代码中可用 #if API_ENV_ONLINE
SWIFT_ACTIVE_COMPILATION_CONDITIONS = API_ENV_ONLINE $(inherited)
GCC_PREPROCESSOR_DEFINITIONS = $(inherited)