I have tried this
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
String pathFlash = getExternalFilesDir(null).getAbsolutePath() + File.separator + "flash/1.swf";
File file = new File(pathFlash);
intent.setDataAndType(Uri.fromFile(file), "flash/*");
startActivity(intent);
But it crashes the application because android cannot find the proper activity to play a flash file.
I there any other way to play flash files on the google tv device?