From 6f57b6cf66774c4d9ca8eb5d20459b8e4006afcc Mon Sep 17 00:00:00 2001 From: luism3861 Date: Fri, 27 Aug 2021 22:41:41 -0500 Subject: [PATCH 1/2] update link to view new Podfile version --- docs/autolinking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/autolinking.md b/docs/autolinking.md index 5fd9743f1..38f95ae9b 100644 --- a/docs/autolinking.md +++ b/docs/autolinking.md @@ -34,7 +34,7 @@ The implementation ensures that a library is imported only once. If you need to ### Example -See example usage in React Native template's [Podfile](https://github.com/facebook/react-native/blob/0.63-stable/template/ios/Podfile). +See example usage in React Native template's [Podfile](https://github.com/facebook/react-native/blob/0.65-stable/template/ios/Podfile). ## Platform Android From e73a7a38fa3c99c27010f2305d89d0381ccc8071 Mon Sep 17 00:00:00 2001 From: luism3861 Date: Fri, 23 Sep 2022 12:43:36 -0500 Subject: [PATCH 2/2] update iOS simulators --- .../cli-platform-ios/src/commands/runIOS/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/cli-platform-ios/src/commands/runIOS/index.ts b/packages/cli-platform-ios/src/commands/runIOS/index.ts index 5bdf81429..5aabf539a 100644 --- a/packages/cli-platform-ios/src/commands/runIOS/index.ts +++ b/packages/cli-platform-ios/src/commands/runIOS/index.ts @@ -141,11 +141,11 @@ async function runOnSimulator( /** * If provided simulator does not exist, try simulators in following order + * - iPhone 14 * - iPhone 13 * - iPhone 12 - * - iPhone 11 */ - const fallbackSimulators = ['iPhone 13', 'iPhone 12', 'iPhone 11']; + const fallbackSimulators = ['iPhone 14', 'iPhone 13', 'iPhone 12']; const selectedSimulator = fallbackSimulators.reduce((simulator, fallback) => { return ( simulator || findMatchingSimulator(simulators, {simulator: fallback}) @@ -569,8 +569,8 @@ export default { func: runIOS, examples: [ { - desc: 'Run on a different simulator, e.g. iPhone SE (2nd generation)', - cmd: 'react-native run-ios --simulator "iPhone SE (2nd generation)"', + desc: 'Run on a different simulator, e.g. iPhone SE (3rd generation)', + cmd: 'react-native run-ios --simulator "iPhone SE (3rd generation)"', }, { desc: "Run on a connected device, e.g. Max's iPhone", @@ -587,8 +587,8 @@ export default { name: '--simulator ', description: 'Explicitly set simulator to use. Optionally include iOS version between ' + - 'parenthesis at the end to match an exact version: "iPhone 6 (10.0)"', - default: 'iPhone 13', + 'parenthesis at the end to match an exact version: "iPhone 14 (16.0)"', + default: 'iPhone 14', }, { name: '--configuration ',