Skip to content

Commit e796c6b

Browse files
committed
update deps in the doc
1 parent 0edf5fc commit e796c6b

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

01_introduction.md

+9-13
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,10 @@ You will be building this iOS application using the [Terminal](https://support.a
4646

4747
To follow this tutorial, you need the following tools and resources:
4848

49-
- [Xcode 11.x](https://developer.apple.com/xcode/) or more recent, available on the [Apple Store](https://apps.apple.com/us/app/xcode/id497799835?mt=12s).
49+
- [Xcode 15.x](https://developer.apple.com/xcode/) or more recent, available on the [Apple Store](https://apps.apple.com/us/app/xcode/id497799835?mt=12s).
5050
- an [AWS Account](https://portal.aws.amazon.com/billing/signup#/start) with at least [these permissions](/amplify-policy.json) (an `Administrator` role or `root` account will also work, but we recommend a [least-privileges](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege) approach).
51-
- [NodeJS 10.x](https://nodejs.org/en/download/) or more recent.
52-
- [CocoaPods 1.9.x](https://cocoapods.org/) or more recent.
53-
- AWS Command Line Interface [AWS CLI 2.0.x](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) or more recent.
51+
- [NodeJS 22.4](https://nodejs.org/en/download/) or more recent.
52+
- AWS Command Line Interface [AWS CLI 2.17.x](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html) or more recent.
5453

5554
You can install these tools following these instructions:
5655

@@ -67,28 +66,25 @@ brew install awscli
6766
# install Node.js & npm
6867
brew install node
6968

70-
# install cocoa pods
71-
sudo gem install cocoapods
7269
```
7370

7471
Once installed, you should have **at least the versions shown below** (anything more recent is valid !) :
7572

7673
```zsh
7774
brew --version
78-
# Homebrew 2.4.12
79-
# Homebrew/homebrew-core (git revision f76a37; last commit 2020-08-17)
75+
# Homebrew 4.3.9-38-g4bd3b93
76+
# Homebrew/homebrew-core (git revision 6b117484622; last commit 2024-07-03)
77+
# Homebrew/homebrew-cask (git revision 75f95ae22c; last commit 2024-07-03)
8078

8179
python3 --version
82-
# Python 3.8.5
80+
# Python 3.12.4
8381

8482
aws --version
85-
# aws-cli/2.0.40 Python/3.8.5 Darwin/19.6.0 source/x86_64
83+
# aws-cli/2.17.5 Python/3.11.9 Darwin/23.5.0 source/arm64
8684

8785
node --version
88-
# v14.8.0
86+
# v22.4.0
8987

90-
pod --version
91-
# 1.9.3
9288
```
9389

9490
[Next](/02_create_ios_app.md) : Create an iOS App.

02_create_ios_app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ struct ContentView_Previews: PreviewProvider {
120120
func prepareTestData() -> UserData {
121121
let userData = UserData.shared
122122
userData.isSignedIn = true
123-
let desc = "this is a very long description that should fit on multiiple lines.\nit even has a line break\nor two."
123+
let desc = "this is a very long description that should fit on multiple lines.\nit even has a line break\nor two."
124124

125125
let n1 = Note(id: "01", name: "Hello world", description: desc, image: "mic")
126126
let n2 = Note(id: "02", name: "A new note", description: desc, image: "phone")

0 commit comments

Comments
 (0)