Implement ShellExecute for Android(java part)

This commit is contained in:
Alibek Omarov (a1batross) 2017-11-01 17:27:08 +03:00
parent 0213d3be89
commit 25608759e5

View file

@ -927,6 +927,13 @@ public class XashActivity extends Activity {
fMouseShown = show != 0;
handler.showMouse( fMouseShown );
}
// Just opens browser
public static void shellExecute( String path )
{
final Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(path));
mSingleton.startActivity(intent);
}
}