Lower min required iOS version
vanlooverenkoen opened this issue · 2 comments
Why is the minimum iOS version set to 14?
Carplay is already supported from 12.
And even if we would lower to 12. why not just use the minimum supported iOS version that is used by Flutter?
In our case we want to have carplay support. But only for devices that are iOS 14 or higher. All the other devices should still be able to use the app without carplay. That is currently not possible because of the hard min iOS version requirement.
Is there something we can do about this?
Hmm strange, for some reason now I can build with a lower iOS version.
@oguzhnatly why is the min version required in de readme?
No we should lower the min version.
And in the AppDelegate we could use:
if #available(iOS 14.0, *) {
return true;
}
But we should lower the flutter_carplay.podspec
to 12.0
(that works for our app)