我正在尝试使SPM与Debug
和Release
以外的其他构建配置一起使用。我们的iOS项目有不同的方案(例如Debug-Staging,Debug-Production,Alpha-Staging,Alpha-Production等),其中我设置了捆绑标识符,一些标志等。
即使SPM仅“了解”调试和发布,有没有办法实现这种多样化?
答案 0 :(得分:0)
在调用generate-xcodeproj命令时,指定自定义配置文件的路径。
样品
const handleDuplicateFieldsDB = err => {
const dupField = Object.keys(err.keyValue)[0];
return `Duplicate field(${dupField}). Please use another value(${err.keyValue[dupField]})!`;
};