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
### New Features
- Adds ability to override the values returned for a given `StatsigUser`
via the new `LocalOverrideAdapter`
```swift
val overrides = LocalOverrideAdapter()
val client = StatsigClient()
client.setup(
app,
"secret-key",
StatsigOptions(overrideAdapter = overrides),
)
val user = StatsigUser("testUser")
overrides.setGate(user, gateName, true)
client.checkGate(user, gateName)
```
>Included In This Release
>- 2665a34 kenny-statsig
> - feat: support local overrides (#54)
>- fd74a2d Xin Li
> - Merge pull request #49 from statsig-io/xinlili-statsig-patch-1
>- 7b36dd3 Xin Li
> - Merge pull request #53 from statsig-io/releases/v1.1.4
>- b65cef9 statsig-kong[bot]
> - Bot: Updated File gradle.properties
>- 6adc92b Xin Li
> - Merge pull request #52 from statsig-io/fix_init_timeout
>- c0f49b6 Xin Li
> - fix: Fix initialization logic
>- 0fb752e Xin Li
> - Create release-bot.yml
0 commit comments