I'm looking for a way to launch the live tv app of a google tv by intent without giving any channel uri.
I tried this:
Uri uri = Uri.parse("tv://");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
This code launch Live Tv app on a black screen and I can't change channels.
I tried fake uri too, but this trick only returns me this toast : "Could not tune to the requested stream"
When I launch the Live Tv app manually, in a conventional way, I can see the channels and navigate through them by pressing the CH+ and CH- buttons.
I can't use uri because the channel listing is empty.