App with min system version 10.13 and sys ext with min system version 10.15

Hello, I have an app with Minimum system version = 10.13 in Info.plist. This app embeds a sys ext whose Minimum system version is 10.15.

It's running in 10.15 and 11, but not in 10.14 and 10.13. => kLSIncompatibleSystemVersionErr

The sys ext is installed only if "@available(macOS 10.15, *)", the app can run without it.

How can I manage this issue? Thank you.

Answered by chrilarc in 683130022

The CMAKE_OSX_DEPLOYMENT_TARGET was set to 10.15. Problem solved.

Accepted Answer

The CMAKE_OSX_DEPLOYMENT_TARGET was set to 10.15. Problem solved.

App with min system version 10.13 and sys ext with min system version 10.15
 
 
Q