Added attribution menu

This commit is contained in:
M66B
2019-07-23 14:30:57 +02:00
parent cbb1cd48c1
commit 196354cf8c
4 changed files with 21 additions and 0 deletions

View File

@@ -260,6 +260,12 @@ public class Helper {
return new Intent(Intent.ACTION_VIEW, Uri.parse(XDA_URI));
}
static Intent getIntentAttribution() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("https://github.com/M66B/FairEmail/blob/master/README.md#attribution"));
return intent;
}
// Graphics
static int dp2pixels(Context context, int dp) {