Added setup navigation menu

This commit is contained in:
M66B
2019-01-14 10:29:47 +00:00
parent d65f6e3225
commit 0f1d0cf106
9 changed files with 566 additions and 479 deletions

View File

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