Skip to content

feat: add Xcode 16 mappings #239

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

Merged
merged 2 commits into from
Jun 20, 2024
Merged
Changes from all commits
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
26 changes: 26 additions & 0 deletions lib/xcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,32 @@ const simulatorDevicePairCompatibility = {
'9.x': true, // watchOS 9.x
'10.x': true // watchOS 10.x
}
},
'16.x': { // Xcode 16.x
'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