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);
}
...