我创建了一个xcconfig文件并设置了一个名为LOVE_APS_ENV
的变量,然后从权利文件中使用值${LOVE_APS_ENV}
myreleaseconfig.xcconfig
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974
SLASH=/
LOVE_API_URL=https:$(SLASH)/endpoint.com
LOVE_APS_ENV = production
这只是一个演示问题,因为在生成IPA后,${LOVE_APS_ENV}
会按预期被production
替换。
我已经清理了项目和派生数据文件夹。