Add open user data button to main menu (#10579)

This commit is contained in:
rubenwardy
2020-12-19 13:27:15 +00:00
committed by GitHub
parent 025035db5c
commit 664f5ce960
9 changed files with 100 additions and 19 deletions

View File

@@ -142,8 +142,8 @@ public class GameActivity extends NativeActivity {
return getResources().getDisplayMetrics().widthPixels;
}
public void openURL(String url) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
public void openURI(String uri) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(browserIntent);
}
}