Skip to content

Commit

Permalink
feat(ios): declare support for ios 15 and xcode 13
Browse files Browse the repository at this point in the history
Part of TIMOB-28467
  • Loading branch information
ewanharris committed Aug 13, 2021
1 parent 8d57e4c commit d0dcb39
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions iphone/iphone/Titanium_Prefix.pch
Expand Up @@ -10,6 +10,12 @@
#include "ThirdpartyNS.h"
#import <AvailabilityInternal.h>

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 150000
#define IS_SDK_IOS_15 true
#else
#define IS_SDK_IOS_15 false
#endif

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 140000
#define IS_SDK_IOS_14 true
#else
Expand Down
4 changes: 2 additions & 2 deletions iphone/package.json
Expand Up @@ -19,8 +19,8 @@
"minIosVersion": "12.0",
"minWatchosVersion": "2.0",
"vendorDependencies": {
"xcode": ">=11.0 <=12.x",
"ios sdk": ">=13.0 <=14.x"
"xcode": ">=11.0 <=13.x",
"ios sdk": ">=13.0 <=15.x"
},
"engines": {
"node": ">=12.13.0"
Expand Down

0 comments on commit d0dcb39

Please sign in to comment.