1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2025-01-03 05:44:14 +00:00

Removed sending logcat

This commit is contained in:
M66B 2023-08-22 23:15:10 +02:00
parent f170dc52ba
commit b149ccb81a

View file

@ -965,13 +965,7 @@ public class Util {
}
// Build intent
Intent sendEmail = new Intent(Intent.ACTION_SEND);
sendEmail.setType("message/rfc822");
sendEmail.putExtra(Intent.EXTRA_EMAIL, new String[]{"marcel+netguard@faircode.eu"});
sendEmail.putExtra(Intent.EXTRA_SUBJECT, "NetGuard " + version + " logcat");
sendEmail.putExtra(Intent.EXTRA_TEXT, sb.toString());
sendEmail.putExtra(Intent.EXTRA_STREAM, uri);
return sendEmail;
return null;
}
@Override