美文网首页
IOS Shell脚本自动化打包,指定profile

IOS Shell脚本自动化打包,指定profile

作者: Milooo | 来源:发表于2020-05-13 16:46 被阅读0次

重点是在脚本配合的打包plist中,设置signingStyle为manual

然后配置provisioningProfiles字典类型  对象为 key:bundleId  value:profile的name   如下:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>com.xx.xx</key>

<string>profileName</string>

<key>com.xx.xxx</key>

<string>profileName2</string>

</dict>

</plist>

相关文章

网友评论

      本文标题:IOS Shell脚本自动化打包,指定profile

      本文链接:https://www.haomeiwen.com/subject/wrxonhtx.html