Search

Requiring a minimum version of OS X for your application

Chris Kelly

4 min read

Dec 6, 2005

Mac

Requiring a minimum version of OS X for your application

Supporting old OS versions is always a lot of work for application developers.

Apple provides a way for the developer to specify the minimum required OS X version for an application by setting the LSMinimumSystemVersion key of the Info.plist file. The OS will then present the user with an error message if they try to run the application on an older version of the system.

Unfortunately, this feature is not very robust or user-friendly. It doesn’t work in Panther at all, and it presents a very minimal and confusing error message on other versions of OS X.

I describe a better solution, using a boot-strapping executable to check the OS version, and only load the real application if the minimum OS version is satisfied. If not, an informative alert is presented to the user. It works with Universal Binaries, Carbon and Cocoa, and all the way back to Mac OS X 10.0, and it doesn’t depend on the buggy LSMinimumSystemVersion feature from Apple.

Background

If you compile an application with gcc 4.0, it can only be run on Mac OS X 10.3.9 and later. When a user attempts to launch the application on an earlier version of OS X, it just simply refuses to launch. There’s no feedback at all about what’s going on.

Compounded with the fact that building Universal Binaries with anything other than gcc 4.0 is non-trivial, this problem is going to cause headaches for a lot of OS X developers out there.

Apple provides a solution by letting the developer specify the minimum OS X version in the LSMinimumSystemVersion key of the Info.plist file for the application. Before launching the application, LaunchServices will check the minimum system version required and give the user an error message if their system’s too old. However, after reading an entry on Dan Wood’s blog, Apple’s solution seems to fall short in several ways:

  1. It only works on 10.2 and 10.4. Other versions of OS X completely ignore the LSMinimumSystemVersion key.

  2. The error message presented by LaunchServices simply says, “You cannot use the application Foo with this version of Mac OS X.” There’s no mention of why the application can’t be used, or what version of Mac OS X is required (see the screenshot on Dan’s blog linked above).

My Solution

Instead of using LSMinimumSystemVersion, I use a boot-stapping mechanism (an executable called SystemVersionCheck) to launch the app’s actual executable or pop up an alert if the system version is too old. This works with both Carbon and Cocoa applications. Here’s how to do it:

  1. Add the following text to your app’s Info.plist file to specify the minimum system version needed. If you don’t add this text, 10.3.9 is assumed to be the minimum system version required.

     <key>LSEnvironment</key>
     <dict>
         <key>MinimumSystemVersion</key>
         <string>10.3.9</string>
     </dict>
    

  2. Build your application (Foo.app). Use gcc 4.0, make Universal Binaries, link against new frameworks, make it as OS X version-dependant as you want.

  3. Open up the Foo.app/Contents/MacOS directory.

  4. Add “.real” to the end of the file name of the app’s executable (“Foo” in this case, renamed to “Foo.real”).

  5. Copy the SystemVersionCheck executable into the directory, and rename it to the original name of the app’s executable (“Foo”).

  6. Release your app to the world. 10.0 users can now attempt to launch it (even if it requires Tiger and CoreData) and will be presented with a nice little alert telling them what version of OS X is required to use the app.

Cool Screenshots

Here’s what the SystemVersionCheck alert looks like on Mac OS X 10.0:

Here’s what it looks like on later OS X versions (10.2 is shown):

If the user simply needs to upgrade using Software Update (for example, the app requires 10.3.9 and they’re using 10.3.4), they’ll be given the option to open Software Update:

Getting the Code

The SystemVersionCheck executable is available below. A sample project that uses it (and demonstrates how to make an Xcode build phase to install it) and the source code for SystemVersionCheck is also included. This is all released under a BSD-style license: use it, change it, do whatever you want, but don’t come crying to me if it doesn’t work.

SystemVersionCheck.dmg

Conclusion

Developers should choose to be in one of the following categories:

A. Use gcc 4.0 and build Universal Binaries. Support 10.3.9 and later. (Easy)

B. Use gcc 3.3. Support 10.2 and later. (Easy)

C. Flex your Xcode muscles and build an application that runs everywhere. (Harder)

SystemVersionCheck makes options A and B much more user-friendly for the user, because your application’s executable won’t even be launched unless the minimum system version requirement is satisfied. So you only have to worry about compiling for the system version you want to support – SystemVersionCheck will handle the user-friendly alerts for users on older OS versions.

Josh Justice

Reviewer Big Nerd Ranch

Josh Justice has worked as a developer since 2004 across backend, frontend, and native mobile platforms. Josh values creating maintainable systems via testing, refactoring, and evolutionary design, and mentoring others to do the same. He currently serves as the Web Platform Lead at Big Nerd Ranch.

Speak with a Nerd

Schedule a call today! Our team of Nerds are ready to help

Let's Talk

Related Posts

We are ready to discuss your needs.

Not applicable? Click here to schedule a call.

Stay in Touch WITH Big Nerd Ranch News