Ian Ebstein

Results 2 comments of Ian Ebstein

Here's an example of how to accomplish this currently: **CodePushProvider.tsx** ```JSX import React, { createContext, useContext } from 'react' import codePush, { DownloadProgress } from 'react-native-code-push' interface CodePushContext { status:...

To harp on the `updateServerUninstallToken` method some more, does that mean something like this should work? ```typescript let token: string | null = null if (Platform.OS === 'android') token =...