flextv / react-native-google-cast

React Native wrapper for the Google Cast SDK for iOS and Android
20 stars 14 forks source link

(Suggestion) RN with RN Navigation Android sometimes wont start Google Cast in the beginning #25

Open fabiancarlos opened 6 years ago

fabiancarlos commented 6 years ago

This is more a suggestion to some future problem with this lib. If your app dont recognize the Chromecast in the beginning, and need to open Google Home or Another app to show the Chromecast Button, i put this on MainApplication and then start to work propertly:

import com.google.android.gms.cast.framework.CastContext;
...
@Override
  public void onCreate() {
    super.onCreate();
    CastContext.getSharedInstance(this);
}
...
petrbela commented 6 years ago

Hmm, do you know when/why this happens?

fabiancarlos commented 6 years ago

I dont know yet... but i think is because of RN Navigation.