Skip to content

Commit 0808418

Browse files
authored
Update iOS docs to 2.13.0 (aws-amplify#1181)
1 parent 77c5910 commit 0808418

6 files changed

+18
-18
lines changed

ios/analytics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If this is a new project, run `pod init` to create the `Podfile` to use CocoaPod
6464
target :'YOUR-APP-NAME' do
6565
use_frameworks!
6666
pod 'AmplifyPlugins/AWSPinpointAnalyticsPlugin'
67-
pod 'AWSMobileClient', '~> 2.12.0'
67+
pod 'AWSMobileClient', '~> 2.13.0'
6868
end
6969
```
7070

ios/authentication.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ After initialization in your project directory with `amplify init`, edit your `P
104104
```ruby
105105
target 'MyApp' do ##Replace MyApp with your application name
106106
use_frameworks!
107-
pod 'AWSMobileClient', '~> 2.12.1' # Required dependency
108-
pod 'AWSAuthUI', '~> 2.12.1' # Optional dependency required to use drop-in UI
109-
pod 'AWSUserPoolsSignIn', '~> 2.12.1' # Optional dependency required to use drop-in UI
107+
pod 'AWSMobileClient', '~> 2.13.0' # Required dependency
108+
pod 'AWSAuthUI', '~> 2.13.0' # Optional dependency required to use drop-in UI
109+
pod 'AWSUserPoolsSignIn', '~> 2.13.0' # Optional dependency required to use drop-in UI
110110
end
111111
```
112112

@@ -762,12 +762,12 @@ AWSMobileClient.default().federatedSignIn(providerName: IdentityProvider.develop
762762
target 'YOUR-APP-NAME' do
763763
use_frameworks!
764764

765-
pod 'AWSFacebookSignIn', '~> 2.12.1' # Add this new dependency
766-
pod 'AWSAuthUI', '~> 2.12.1' # Add this dependency if you have not already added
765+
pod 'AWSFacebookSignIn', '~> 2.13.0' # Add this new dependency
766+
pod 'AWSAuthUI', '~> 2.13.0' # Add this dependency if you have not already added
767767
768768
# Other Pod entries
769-
pod 'AWSMobileClient', '~> 2.12.1'
770-
pod 'AWSUserPoolsSignIn', '~> 2.12.1'
769+
pod 'AWSMobileClient', '~> 2.13.0'
770+
pod 'AWSUserPoolsSignIn', '~> 2.13.0'
771771
772772
end
773773
```
@@ -832,13 +832,13 @@ Now, your drop-in UI will show a Facebook sign in button which the users can use
832832
platform :ios, '9.0'
833833
target :'YOUR-APP-NAME' do
834834
use_frameworks!
835-
pod 'AWSGoogleSignIn', '~> 2.12.1' # Add this new dependency
835+
pod 'AWSGoogleSignIn', '~> 2.13.0' # Add this new dependency
836836
pod 'GoogleSignIn', '~> 4.0' # Add this new dependency
837-
pod 'AWSAuthUI', '~> 2.12.1' # Add this dependency if you have not already added
837+
pod 'AWSAuthUI', '~> 2.13.0' # Add this dependency if you have not already added
838838
839839
# Other Pod entries
840-
pod 'AWSMobileClient', '~> 2.12.1'
841-
pod 'AWSUserPoolsSignIn', '~> 2.12.1'
840+
pod 'AWSMobileClient', '~> 2.13.0'
841+
pod 'AWSUserPoolsSignIn', '~> 2.13.0'
842842
843843
end
844844
```

ios/how-to-cognito-integrate-an-existing-identity-pool-ios.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ platform :ios, '9.0'
108108
target :'YOUR-APP-NAME' do
109109
use_frameworks!
110110
111-
pod 'AWSMobileClient', '~> 2.12.1'
111+
pod 'AWSMobileClient', '~> 2.13.0'
112112
113113
# other pods . . .
114114

ios/pubsub.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The `Podfile` that you configure to install the AWS Mobile SDK must contain the
2525
target :'YOUR-APP-NAME' do
2626
use_frameworks!
2727

28-
pod 'AWSIoT', '~> 2.12.1'
28+
pod 'AWSIoT', '~> 2.13.0'
2929
# other pods
3030

3131
end

ios/push-notifications.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ Use the following steps to connect push notification backend services to your ap
5555
target :'YOUR-APP-NAME' do
5656
use_frameworks!
5757

58-
pod 'AWSPinpoint', '~> 2.12.1'
58+
pod 'AWSPinpoint', '~> 2.13.0'
5959
# other pods
60-
pod 'AWSMobileClient', '~> 2.12.1'
60+
pod 'AWSMobileClient', '~> 2.13.0'
6161
end
6262
```
6363

@@ -274,4 +274,4 @@ When a user receives an notification and taps on it, the AWS Pinpoint SDK will s
274274

275275
`_campaign.received_background` when the notification is tapped on while the app is in the background
276276

277-
If the developer never taps on the notification even though it was received on the device, the App will not submit an event for that since there is no way for the App to know that the notification was received by the device.
277+
If the developer never taps on the notification even though it was received on the device, the App will not submit an event for that since there is no way for the App to know that the notification was received by the device.

ios/storage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ If this is a new project, run `pod init` from the root of your application folde
7373
target :'YOUR-APP-NAME' do
7474
use_frameworks!
7575
pod 'AmplifyPlugins/AWSS3StoragePlugin'
76-
pod 'AWSMobileClient', '~> 2.12.0'
76+
pod 'AWSMobileClient', '~> 2.13.0'
7777
end
7878
```
7979

0 commit comments

Comments
 (0)