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 d17cd1cb3aa64bf08e00da186ac9859ea2cb05ca Mon Sep 17 00:00:00 2001 From: luism3861 Date: Wed, 29 Sep 2021 10:12:19 -0500 Subject: [PATCH 2/2] update iOS simulators according update Xcode 13 --- packages/platform-ios/src/commands/runIOS/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/platform-ios/src/commands/runIOS/index.ts b/packages/platform-ios/src/commands/runIOS/index.ts index aaaaba870..9a8936f7a 100644 --- a/packages/platform-ios/src/commands/runIOS/index.ts +++ b/packages/platform-ios/src/commands/runIOS/index.ts @@ -147,11 +147,11 @@ async function runOnSimulator( /** * If provided simulator does not exist, try simulators in following order + * - iPhone 13 * - iPhone 12 * - iPhone 11 - * - iPhone 8 */ - const fallbackSimulators = ['iPhone 12', 'iPhone 11', 'iPhone 8']; + const fallbackSimulators = ['iPhone 13', 'iPhone 12', 'iPhone 11']; const selectedSimulator = fallbackSimulators.reduce((simulator, fallback) => { return ( simulator || findMatchingSimulator(simulators, {simulator: fallback}) @@ -579,8 +579,8 @@ export default { func: runIOS, examples: [ { - desc: 'Run on a different simulator, e.g. iPhone SE (1st generation)', - cmd: 'react-native run-ios --simulator "iPhone SE (1st generation)"', + desc: 'Run on a different simulator, e.g. iPhone SE (2nd generation)', + cmd: 'react-native run-ios --simulator "iPhone SE (2nd generation)"', }, { desc: 'Pass a non-standard location of iOS directory', @@ -602,7 +602,7 @@ export default { 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 12', + default: 'iPhone 13', }, { name: '--configuration ',