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
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
45
45
1. Add the following line to your Podfile:
46
46
47
47
```ruby
48
-
pod 'AWSAppSync', '~> 3.6.4'
48
+
pod 'AWSAppSync', '~> 3.6.5'
49
49
```
50
50
51
51
Example:
@@ -59,7 +59,7 @@ The AWS AppSync SDK for iOS enables you to access your AWS AppSync backend and p
59
59
use_frameworks!
60
60
61
61
# Pods for EventsApp
62
-
pod 'AWSAppSync', '~> 3.6.4'
62
+
pod 'AWSAppSync', '~> 3.6.5'
63
63
end
64
64
```
65
65
@@ -84,18 +84,18 @@ Carthage supports XCFrameworks in Xcode 12 or above. Follow the steps below to c
84
84
```
85
85
86
86
3. Then run the following command:
87
-
87
+
88
88
$ carthage update --use-xcframeworks
89
89
90
90
4. On your application targets’ General settings tab, in the EmbeddedBinaries section, drag and drop each xcframework you want to use from the Carthage/Build folder on disk.
91
91
92
92
>Note:If you are usingXCFrameworks (i.e., either CarthageorDynamicFrameworks), the module`AWSMobileClient` is named as `AWSMobileClientXCF` to work around a [Swift issue](https://bugs.swift.org/browse/SR-11704). To use `AWSMobileClient`, import it as:
93
-
93
+
94
94
import AWSMobileClientXCF
95
95
96
96
and use it your app code without the `XCF` suffix.
97
97
98
-
AWSMobileClient.default.initialize()
98
+
AWSMobileClient.default.initialize()
99
99
100
100
##### Frameworks with "fat libraries" (not recommended)
101
101
@@ -205,7 +205,7 @@ You can get the backend setup by following the steps below:
205
205
- `AppSyncMultiAuthAPIKey`
206
206
1. Create another CloudFormation Stack following step 1-6 above with `API Key` as the Auth type (we'll change that later)
207
207
1. Create a Lambda function using the template provided in this project at `AWSAppSyncIntegrationTests/ConsoleResources/appsync-lambda-authorize
208
-
r.js`
208
+
r.js`
209
209
1. Once the stack is complete click on the __Outputs__ tab
210
210
1. Copy the appropriate values to the test configuration file `AppSyncIntegrationTests/appsync_test_credentials.json`:
0 commit comments