Github user jcesarmobile commented on the issue:
https://github.com/apache/cordova-plugin-splashscreen/pull/135
The `@available(iOS 11.0, *)` won't compile on Xcode 8, you should wrap
your code in
```
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000
// your code
#endif
```
@kerrishotts can you take a look into the code?--- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
