Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update doc for Amplitude-Swift #584

Merged
merged 3 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/collections/ios_sdk/en/ios-swift-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This is the official documentation for the Amplitude Analytics iOS SDK.
1. Add the dependency to your `Podfile`:

```bash
pod 'AmplitudeSwift', '~> 1.0.0'
pod 'AmplitudeSwift', '~> 1.0'
```
2. Run `pod install` in the project directory.
{{/partial:tab}}
Expand All @@ -42,7 +42,7 @@ This is the official documentation for the Amplitude Analytics iOS SDK.
{{partial:tab name="Carthage"}}
Add the following line to your `Cartfile`.
```bash
github "amplitude/Amplitude-Swift" ~> 1.0.0
github "amplitude/Amplitude-Swift" ~> 1.0
```
Check out the [Carthage docs](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) for more info.
{{/partial:tab}}
Expand Down Expand Up @@ -80,7 +80,7 @@ Amplitude* amplitude = [Amplitude initWithConfiguration:configuration];
| `loggerProvider` | Implements a custom `loggerProvider` class from the Logger, and pass it in the configuration during the initialization to help with collecting any error messages from the SDK in a production environment. | `ConsoleLogger` |
| `flushIntervalMillis` | The amount of time SDK will attempt to upload the unsent events to the server or reach `flushQueueSize` threshold. | `30000` |
| `flushQueueSize` | SDK will attempt to upload once unsent event count exceeds the event upload threshold or reach `flushIntervalMillis` interval. | `30` |
| `flushMaxRetries` | Maximum retry times. | `5` |
| `flushMaxRetries` | Maximum retry times. | `6` |
| `minIdLength` | The minimum length for user id or device id. | `5` |
| `partnerId` | The partner id for partner integration. | `nil` |
| `identifyBatchIntervalMillis` | The amount of time SDK will attempt to batch intercepted identify events. | `30000` |
Expand Down
2 changes: 1 addition & 1 deletion content/globals/en/sdk_versions.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
browser: 2.11.12
android: 1.19.4
node: 1.3.6
ios: 1.11.3
ios: 1.11.9
java: 1.12.4
react_native: 1.1.7
flutter: 3.16.7
Expand Down
Loading