cast-videos-android
cast-videos-android copied to clipboard
When i try to enter to this link it shows a 404 error https://github.com/googlecast/Cast-Player-Sample 
For this part of the code example on [(page 10)](https://codelabs.developers.google.com/codelabs/cast-videos-android/#9) ... remoteMediaClient.addListener(new remoteMediaClient.registerCallback(new RemoteMediaClient.Callback() { @Override public void onStatusUpdated() { Intent intent = new Intent(LocalPlayerActivity.this, ExpandedControlsActivity.class); startActivity(intent); remoteMediaClient.unregisterCallback(this); } });...
`remoteMediaClient.addListener(new RemoteMediaClient.Listener() ...` The method `addListener()` is considered deprecated by the API, please update with latest method so new cast devs know the best approach to building a cast listener.
I am using an Android Emulator which is of version 7.1 (Nougat) - API 25 and emulator version - 27.3.10-4969155 Does it support cast ? I am not able to...
`remoteMediaClient.load(buildMediaInfo(), autoPlay, position);` This `load()` method is considered deprecated by the API, please update with the latest method preferred by the API. You can find this line under the **Loading...
On step 5 there is a minor spelling error > Override onCreateOptionMenu in LocalPlayerActivity in a similar way. onCreateOptionMenu should be onCreateOption**s**Menu, the **s** is missing.
In the final update of the tutorial to LocalPlayerActivity's loadRemoteMedia method, the final line is changed to: remoteMediaClient.load(mSelectedMedia, autoPlay, position); While this is what the line is in the completed...

Step to reproduce the current bug: - Play a HLS muxed multi language with chromecast. - Open audio dialog where I should see two languages. - You can see only...
Steps to reproduce the current bug: - play a multi language content; - change the language. - the content is stopped and you can see a black screen on tv....