You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure about the best way to deal with this...
Does nativescript have some elegant way to detect whether some functionality is available, or does it really have to be some iOS version check?
Something like:
import * as platformModule from "tns-core-modules/platform";
var sdkVer= parseFloat(platformModule.device.sdkVersion);
if (sdkVer >= 10 ) {
.....
}
The text was updated successfully, but these errors were encountered:
Hi!
A few types in
https://github.com/EddyVerbruggen/nativescript-health-data/blob/master/src/health-data.ios.ts
are breaking compatibility with older iOS versions (plenty of devices running iOS 9.3.5...).
Not sure about the best way to deal with this...
Does nativescript have some elegant way to detect whether some functionality is available, or does it really have to be some iOS version check?
Something like:
The text was updated successfully, but these errors were encountered: