I am wanting to use navigation stack for my watch app but when building I keep getting the error "'NavigationStack' is only available in iOS 16.0 or newer"
I understand I can simply wrap my code using if #available(iOS 16.0, *) {}
and do the same for watchOS 9 respectively. However, I want the app to just not even be available for download on anything older. That way, there should be no need for these wrappers since this code will never be run on anything older.
Is there a way to do this?