From 3c20b2aa6b5836e1b454dca26d0dca1fd04e7f0e Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Mon, 17 Jun 2024 12:01:30 +0800 Subject: [PATCH] documentation --- docs/quickstart.mdx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index a55d4b77..ad685fed 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -11,15 +11,22 @@ $ flutter create thermion_sample_project && cd thermion_sample_project $ flutter pub add thermion_flutter ``` -2. If running on MacOS, change the minimum deployment target to OSX 13 +2. If running on iOS or MacOS, change the minimum deployment target to OSX 13 - + -In `macos/Podfile`, make sure the `platform` entry refers to `13.0`. +Make sure the `platform` entry refers to `13.0` in your Podfile. + +In `macos/Podfile` (for macOS): ``` platform :osx, '13.0' ``` +In `ios/Podfile`, (for iOS): +``` +platform :ios, '13.0' +``` + Then open XCode: ``` open macos/Runner.xcworkspace