Skip to content

Commit

Permalink
Add swift URL options
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-statsig committed Dec 11, 2024
1 parent 1cbe9f6 commit 1c5bfd0
Showing 1 changed file with 14 additions and 0 deletions.
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"))
```

0 comments on commit 1c5bfd0

Please sign in to comment.