我正在尝试使用fastlane增加我的React Native(0.60)应用程序的内部版本号。
increase_build_number
工作正常,但是increase_version_number
产生此错误:
Can't increment version
我从错误中遵循了推荐的指南,没有运气-https://developer.apple.com/library/content/qa/qa1827/_index.html
increase_version_number
是否可以与.xcworkspace
一起使用?
答案 0 :(得分:0)
我先按照苹果公司的以下说明解决了该问题:
https://developer.apple.com/library/archive/qa/qa1827/_index.html
然后在最后一步中,我将Bundle version string (short)
(CFBundleShortVersionString)
从$(MARKETING_VERSION)更改为0.1.0
希望这会有所帮助。