I use the following code to play mp4 video:
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse(url, "video/mp4");
ctx.startActivity(i);
It works fine on phones & tablets, as well as Google TV emulator, but throws ActivityNotFoundException on Google TV device.
Any thoughts?