Silly question: in Xcode I lost the option to set version and build number for extensions in the app (eg: widgets). I thought this was because they'd be synced automatically, but if I try to build the app I get a warning that their CFBundleVersions don’t match. Do I really have to go into the widget's Build Settings each time and find the line in there to modify now?
@christianselig unfortunately the only elegant solution is what @SmileyKeith suggested. I’m not aware of any other way apart from altering all occurrences every time you want to update.
@t0rgh @christianselig we also did this in a xcconfig so it is easy to sed out to bump from a script
@SmileyKeith @t0rgh In the main app target, what do you set the "Version" and "Build” to under General > Identity?
@christianselig @t0rgh to the variable by itself. We split the root version and build number, potentially not required though depending on how you version
@SmileyKeith @christianselig Together with your scripting idea that is actually smarter than what I did.