Sameer Jiwani

Results 17 comments of Sameer Jiwani
trafficstars

sample initialization code: ``` val gb = GBSDKBuilder( apiKey = "sdk-key", hostURL = "https://cdn.growthbook.io/", networkDispatcher = DefaultGBNetworkClient(), attributes = mapOf("app_id" to appId), trackingCallback = { gbExperiment, gbExperimentResult -> Log.d(TAG, "Variation...

Yes null pointer exception - the features don’t exist in that process (my guess would be the cache is in the memory of the other process but still marked as...

Hi @Bohdan-Kim, is there a way to know when the initialization is complete? `.initialize()` is synchronous in latest version 1.1.47

btw, I induced a delay of 1 second between `initialize()` and the use of the feature, and it still didn't work in the foreground service separate process. I also tried...

Hi @Bohdan-Kim, you would have to add to your manifest that it's a separate process as I mentioned ``` ```

thanks @Bohdan-Kim. I'm unable to test this because any version above `1.1.47` the library doesn't import properly for me. None of the source files seem to be present. ``` implementation...

Hi @Bohdan-Kim I have, I was only able to resolve the import issue with ``` api 'io.growthbook.sdk:GrowthBook-android:1.1.58' implementation 'io.ktor:ktor-client:2.3.11' ``` For the original issue, it seems if I call `CachingAndroid.consumeContext(context)`...