MacOS – How to open applications regardless of required version

applicationsmacos

So I downloaded this application that I am relatively sure is able to run fine on 10.7.5 (My version of OSX), but when I try to open it, a message pops up saying that it requires at least version 10.8.5. The reason I think it should work with my OS is because an older version of the app does, and as far as I can tell, there is no real content added between that update and this one, so I don't feel they could have refactored it so much in a somewhat insignificant update that it no longer works on my OS. (And this application really doesn't let you downgrade, so done say I should do that) It doesn't open and then crash. When I try to open it, just a window with the Finder icon pops up saying that it doesn't work on the current version of my OS, and I need 10.8.5. The application doesn't even try to open. So I feel that there must be a flag somewhere in the code or something dictating minimum version required. So my question is: Is there a way to ignore this flag and open this application regardless of minimum required version?

Best Answer

That check is done by checking the application's plist.

  1. Right click on the application and click "Show Package Contents"

  2. Open "Contents"

  3. Open "Info.plist"

  4. Scroll down to where it says "LSMinimumSystemVersion" or "Minimum system version" depending on the editor you're using.

  5. Replace the string on the next line which should be "10.8.5" (or to the right of the key, again, depending on the editor) with "10.7.5". Try to open the app again.

You may have to restart after this change.