Added quick setup help

This commit is contained in:
M66B
2019-02-18 17:00:58 +00:00
parent a07bc15f38
commit 9831a3ccd4
4 changed files with 49 additions and 8 deletions

View File

@@ -180,6 +180,12 @@ public class Helper {
return Intent.createChooser(intent, context.getString(R.string.title_select_app));
}
static Intent getIntentSetupHelp() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/SETUP.md#setup-help"));
return intent;
}
static Intent getIntentFAQ() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(Helper.FAQ_URI));