Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: add Xcode 16 mappings #239

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions lib/xcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,44 @@ const simulatorDevicePairCompatibility = {
'9.x': true, // watchOS 9.x
'10.x': true // watchOS 10.x
}
},
'16.x': { // Xcode 16.x
'13.x': { // iOS 13.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
},
'14.x': { // iOS 14.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
},
hansemannn marked this conversation as resolved.
Show resolved Hide resolved
'15.x': { // iOS 15.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
},
'16.x': { // iOS 16.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
},
'17.x': { // iOS 18.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
},
'18.x': { // iOS 18.x
'8.x': true, // watchOS 8.x
'9.x': true, // watchOS 9.x
'10.x': true, // watchOS 10.x
'11.x': true, // watchOS 11.x
}
}
};

Expand Down
Loading