Kevin Yang
Kevin Yang
Talking with segment, they are saying I should be passing an `advertisingId` to Segment within a context object. How might I do this? ``` "context": { "active": true, "app": {...
@jmeiss I created a native module using Android's `AdvertisingIdClient` class to grab the ADID and then I include it within the context like this ``` context: { device: { advertisingId:...
What I ended up doing is everywhere I call Toast.show, I set a variable to it, and then use Toast.hide to manually destroy the message. I also removed duration from...
@akshetpandey @omeraplak how are you using this in react native?
@akshetpandey How are you calling it? I am calling it like this `InAppUtils.refreshReceipt((error, result) => {})` but it prompted me to sign in twice and then I get hit with...
@akshetpandey ok thanks will try something out!
In `onIndexChanged={(index) => this.setState({index})}` only fires once after the first swipe. The state only changes once when it should be changing each swipe.