Java Code Examples for com.google.android.gms.cast.CastMediaControlIntent#DEFAULT_MEDIA_RECEIVER_APPLICATION_ID
The following examples show how to use
com.google.android.gms.cast.CastMediaControlIntent#DEFAULT_MEDIA_RECEIVER_APPLICATION_ID .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultMediaRouteController.java From delion with Apache License 2.0 | 4 votes |
protected String getCastReceiverId() { return CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID; }
Example 2
Source File: DefaultMediaRouteController.java From AndroidChromium with Apache License 2.0 | 4 votes |
protected String getCastReceiverId() { return CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID; }
Example 3
Source File: DefaultMediaRouteController.java From 365browser with Apache License 2.0 | 4 votes |
protected String getCastReceiverId() { return CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID; }
Example 4
Source File: MainApplication.java From UTubeTV with The Unlicense | 4 votes |
@Override public void onCreate() { super.onCreate(); sApplicationID = CastMediaControlIntent.DEFAULT_MEDIA_RECEIVER_APPLICATION_ID; // "6142AE0B"; // "5A3D7A5C"; CastUtils.saveFloatToPreference(getApplicationContext(), VideoCastManager.PREFS_KEY_VOLUME_INCREMENT, (float) VOLUME_INCREMENT); }