Skip to content
Snippets Groups Projects
Commit d05449d2 authored by akwizgran's avatar akwizgran
Browse files

Changed the debugging email address to Gmail.

parent c3b5418f
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,7 @@ public class TestingActivity extends BriarActivity implements OnClickListener {
private void sendEmail(Uri attachment) {
Intent i = new Intent(ACTION_SEND);
i.setType("message/rfc822");
i.putExtra(EXTRA_EMAIL, new String[] { "debug@briarproject.org" });
i.putExtra(EXTRA_EMAIL, new String[] { "briartest@gmail.com" });
i.putExtra(EXTRA_SUBJECT, "Debugging information");
i.putExtra(EXTRA_STREAM, attachment);
startActivity(Intent.createChooser(i, "Send to developers"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment