Skip to content

Commit e7c11e9

Browse files
authored
Merge pull request #224 from tidev/xcode-14-1_7_X
feat: support Xcode 14 mappings (1_7_X)
2 parents 22efed9 + 04dad0c commit e7c11e9

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

lib/xcode.js

+27
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,33 @@ const simulatorDevicePairCompatibility = {
210210
'7.x': true, // watchOS 7.x
211211
'8.x': true // watchOS 8.x
212212
}
213+
},
214+
'14.x': { // Xcode 14.x
215+
'12.x': { // iOS 12.x
216+
'7.x': true, // watchOS 7.x
217+
'8.x': true, // watchOS 8.x
218+
'9.x': true // watchOS 9.x
219+
},
220+
'13.x': { // iOS 13.x
221+
'7.x': true, // watchOS 7.x
222+
'8.x': true, // watchOS 8.x
223+
'9.x': true // watchOS 9.x
224+
},
225+
'14.x': { // iOS 14.x
226+
'7.x': true, // watchOS 7.x
227+
'8.x': true, // watchOS 8.x
228+
'9.x': true // watchOS 9.x
229+
},
230+
'15.x': {
231+
'7.x': true, // watchOS 7.x
232+
'8.x': true, // watchOS 8.x
233+
'9.x': true // watchOS 9.x
234+
},
235+
'16.x': {
236+
'7.x': true, // watchOS 7.x
237+
'8.x': true, // watchOS 8.x
238+
'9.x': true // watchOS 9.x
239+
}
213240
}
214241
};
215242

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ioslib",
3-
"version": "1.7.28",
3+
"version": "1.7.29",
44
"description": "iOS Utility Library",
55
"keywords": [
66
"appcelerator",

0 commit comments

Comments
 (0)