Questions tagged «agvtool»

22
更好的增加内部编号的方法?
我一直在使用Shell脚本作为Xcode构建过程的一部分,以增加plist文件中的内部版本号,但是,这会使Xcode 4.2.1频繁崩溃(出现关于目标不属于项目的错误;我猜是plist文件的更改以某种方式使Xcode混乱)。 shell脚本这样做是为了使构建号仅agvtool在文件比plist文件新时才增加(因此,仅构建不会增加值): if [ -n \"`find ProjDir -newer ProjDir/Project-Info.plist`\" ]; then agvtool -noscm next-version -all; else echo \"Version not incremented\"; fi 有没有办法增加不会破坏Xcode 的内部版本号(在plist文件或其他任何地方)? 最后的编辑:我现在使用刚刚在github上公开的python脚本来做这种事情。它没有很好的文档记录,但应该不难解决。作为奖励,此存储库还包含一个有用的脚本,该脚本可将第三方库自动捆绑到应用程序捆绑包中。
133 xcode  shell  version  xcrun  agvtool 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.