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

Add swift URL options #2405

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
14 changes: 14 additions & 0 deletions docs/client/iOS/_options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,17 @@ object that conforms to the `StorageProvider` protocol.
- **shutdownOnBackground**: Bool, default `true`
- The SDK automatically shuts down when an app is put into the background.
If you need to use the SDK while your app is in the background, set this to false.

- **initializationURL**: URL, default `nil`
- Override the URL used to initialize the SDK. Learn more at https://docs.statsig.com/custom_proxy

```swift
StatsigOptions(initializationURL: URL(string: "https://example.com/setup"))
```

- **eventLoggingURL**: URL, default `nil`
- Override the URL used to log events. Learn more at https://docs.statsig.com/custom_proxy

```swift
StatsigOptions(eventLoggingURL: URL(string: "https://example.com/info"))
```
Loading