Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/src/main/java/com/termux/app/activities/HelpActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ public void onPageFinished(WebView view, String url) {
}
});
mWebView.loadUrl(TermuxConstants.TERMUX_WIKI_URL);
// Anubis prevents Termux wiki from loading in regular WebView, we need to launch an external browser
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(TermuxConstants.TERMUX_WIKI_URL));
startActivity(browserIntent);
}

@Override
Expand Down