Obtaining Library Version Number in Xcode workspace

920 Views Asked by At

Problem

I'm working on an Xcode project that's meant to be built into a library and included in other projects, either as a CocoaPod or in a workspace. I'm using agvtool to set the bundle and marketing versions. I wanted to add a simple method for reading the version of the library as part of the API, and it's turned into a much more complicated thing than I anticipated. I had initially implemented my versionString method like this:

+ (NSString *)versionString {
  return [NSString stringWithFormat:@"%@.%@", [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"], [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]];
}

However, when the library is included in a workspace, CFBundleShortVersionString and CFBundleVersion get their values from the workspace, not from the library! So, if the library is marketing version 1.2 and the bundle version is 3, but it is included in a workspace that is marketing version 2.0 and bundle version 130, this method would return 2.0.130 instead of 1.2.3.

Does anyone know of a way that I can get access to the library's CFBundleShortVersionString instead of the workspace's?

Additional Info

I started digging into some of the more obscure aspects of agvtool, and I've discovered a reliable way to get access to the bundle version, but what I would really prefer is the marketing version, as that's what I would use to indicate API compatibility.

agvtool will set the Current Project Version property in your build settings, so if you set Versioning System to Apple Generic, Xcode will generate a .c file with some global constants for you as part of the build process. All you have to do to gain access to those values is expose them in your own header, like this:

extern const unsigned char {PRODUCT NAME}VersionString[];
extern const double {PRODUCT NAME}VersionNumber;

When I saw this, I thought for sure I was on the right track. VersionNumber is indeed 3.0, but VersionString is @(#)PROGRAM:{PRODUCT NAME} PROJECT:{PRODUCT NAME}-3.

It seems like I might be able to get what I want by setting the Generated Versioning Variables parameter in the build settings, but I'm also getting the suspicion that I started in the wrong direction and I'm only getting further off track.

Any help would be greatly appreciated.

0

There are 0 best solutions below