Back to project page android-player-samples.
The source code is released under:
Apache License
If you think the Android project android-player-samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.brightcove.player.samples.cast.basic; /*from w w w .j a va 2s . co m*/ import android.support.v7.app.ActionBarActivity; import android.os.Bundle; /** * This app illustrates how to use the Google Cast Plugin with the * Brightcove Player for Android. * * @author Billy Hnath (bhnath@brightcove.com) */ public class MainActivity extends ActionBarActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.basic_cast); } }