lively-evening-1890
11/13/2025, 8:47 AMcalm-dog-24239
11/13/2025, 12:29 PMcalm-dog-24239
11/13/2025, 4:51 PMclearCache() method.1
Currently, it is not possible to disable this caching behavior or configure a specific duration. The cache is simply considered "current" based on the last successful fetch.
More about caching you can read in our docs.
2. User Data Collection
No, when used for feature flags, the SDK does not automatically collect any user data like IP addresses or device identifiers that you would typically need to declare in App Store Connect.
The SDK only processes data that you explicitly pass to it. For example, you are in full control of the targeting attributes you send when initializing the SDK or setting user attributes:
// You decide exactly what data to send.
// The SDK does not add anything automatically.
let attributes: [String: Any] = [
"id": "user_123",
"email": "user@example.com",
"country": "US"
]
growthbook.setAttributes(attributes)
In summary, the SDK only handles the feature definitions (rules, default values, etc., which you control in your dashboard) and the targeting attributes that you provide. It does not perform any automatic tracking or collection of personal user or device data.
Hope this helps clarify things!lively-evening-1890
11/13/2025, 9:10 PMcalm-dog-24239
11/14/2025, 6:42 AM