You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`@aws-amplify/react-native` requires a minimum iOS deployment target of `13.0`, open the _Podfile_ located in the _ios_ directory and update the `target` value:
13
+
14
+
```diff
15
+
- platform :ios, min_ios_version_supported
16
+
+ platform :ios, 13.0
17
+
```
18
+
12
19
You will also need to install the pod dependencies for iOS:
13
20
14
21
```sh
@@ -41,8 +48,7 @@ DataStore.configure({
41
48
42
49
<Callout>
43
50
44
-
The SQLite storage adapter does not currently support custom primary keys.
45
-
Disable custom primary key in `amplify/cli.json` by setting `graphQLTransformer.respectPrimaryKeyAttributesOnConnectionField` to `false`.
51
+
The SQLite storage adapter does not currently support custom primary keys. Disable custom primary key in `amplify/cli.json` by setting `graphQLTransformer.respectPrimaryKeyAttributesOnConnectionField` to `false`.
46
52
47
53
</Callout>
48
54
</Block>
@@ -81,9 +87,8 @@ DataStore.configure({
81
87
82
88
<Callout>
83
89
84
-
The SQLite storage adapter does not currently support custom primary keys.
85
-
Disable custom primary key in `amplify/cli.json` by setting `graphQLTransformer.respectPrimaryKeyAttributesOnConnectionField` to `false`.
90
+
The SQLite storage adapter does not currently support custom primary keys. Disable custom primary key in `amplify/cli.json` by setting `graphQLTransformer.respectPrimaryKeyAttributesOnConnectionField` to `false`.
Note that v6 supports react-native v0.70+, so if you prefer manually upgrading dependencies double-check the version of react-native in your package.json file.
90
90
91
+
`@aws-amplify/react-native` requires a minimum iOS deployment target of `13.0`, if has not already been set to `13.01 or above, open the _Podfile_ located in the _ios_ directory and update the `target` value:
92
+
93
+
```diff
94
+
- platform :ios, min_ios_version_supported
95
+
+ platform :ios, 13.0
96
+
```
97
+
91
98
<Callout>
92
99
93
100
If you are using `signInWithRedirect` (previously `Auth.federatedSignIn`) you will need to install the `@aws-amplify/rtn-web-browser` native module.
@@ -188,7 +195,6 @@ If you have previously configured Amplify by passing the configuration object li
188
195
189
196
</InlineFilter>
190
197
191
-
192
198
**Running Amplify on the server with NextJS**
193
199
194
200
To enable the use of the Amplify JavaScript library on the server, you need to set the `ssr` configuration to true in the `Amplify.configure` function.
`@aws-amplify/react-native` requires a minimum iOS deployment target of `13.0`, open the _Podfile_ located in the _ios_ directory and update the `target` value:
56
+
57
+
```diff
58
+
- platform :ios, min_ios_version_supported
59
+
+ platform :ios, 13.0
60
+
```
61
+
53
62
You will also need to install the pod dependencies for iOS:
54
63
55
64
```sh
@@ -85,7 +94,7 @@ amplify init
85
94
When you initialize Amplify you'll be prompted for some information about the app, with the option to accept recommended values:
86
95
87
96
```console
88
-
? Enter a name for the project (amplified_todo)
97
+
? Enter a name for the project (amplified_todo)
89
98
The following configuration will be applied:
90
99
91
100
Project information
@@ -117,6 +126,7 @@ When you initialize a new Amplify project, a few things happen:
117
126
## Set up frontend
118
127
119
128
Next, configure Amplify so it can interact with backend services by adding the following code below the last import:
129
+
120
130
<BlockSwitcher>
121
131
<Blockname="Expo CLI">
122
132
@@ -127,6 +137,7 @@ import { Amplify } from 'aws-amplify';
`@aws-amplify/react-native` requires a minimum iOS deployment target of `13.0`, open the _Podfile_ located in the _ios_ directory and update the `target` value:
98
+
99
+
```diff
100
+
- platform :ios, min_ios_version_supported
101
+
+ platform :ios, 13.0
102
+
```
103
+
97
104
You will also need to install the pod dependencies for iOS:
`@aws-amplify/react-native` requires a minimum iOS deployment target of `13.0`, open the _Podfile_ located in the _ios_ directory and update the `target` value:
589
+
590
+
```diff
591
+
- platform :ios, min_ios_version_supported
592
+
+ platform :ios, 13.0
593
+
```
594
+
588
595
You will also need to install the pod dependencies for iOS:
0 commit comments