mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-16 19:57:31 +00:00
chore
This commit is contained in:
parent
836e84e91e
commit
e8440e0e0d
@ -88,9 +88,10 @@ public class AboutFragment extends BasePreferencesFragment {
|
|||||||
preference.setSummary(R.string.about_feedback_summary);
|
preference.setSummary(R.string.about_feedback_summary);
|
||||||
preference.setIconSpaceReserved(false);
|
preference.setIconSpaceReserved(false);
|
||||||
preference.setOnPreferenceClickListener(p -> {
|
preference.setOnPreferenceClickListener(p -> {
|
||||||
final Intent intent = new Intent(Intent.ACTION_SENDTO);
|
final Intent intent = new Intent(Intent.ACTION_SEND);
|
||||||
intent.setData(Uri.parse(getString(R.string.about_feedback_summary)
|
intent.setType("message/rfc822")
|
||||||
+ "?body=Please%20note%20that%20your%20email%20address%20and%20the%20entire%20content%20will%20be%20published%20onto%20GitHub%20issues.%20If%20you%20do%20not%20wish%20to%20do%20that%2C%20use%20other%20contact%20methods%20instead."));
|
.putExtra(Intent.EXTRA_EMAIL, getString(R.string.feedback_summary))
|
||||||
|
.putExtra(Intent.EXTRA_TEXT, "Please note that your email address and the entire content will be published onto GitHub issues. If you do not wish to do that, use other contact methods instead.")
|
||||||
if (intent.resolveActivity(context.getPackageManager()) != null) startActivity(intent);
|
if (intent.resolveActivity(context.getPackageManager()) != null) startActivity(intent);
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
@ -54,7 +54,7 @@ public final class CrashReporter implements Thread.UncaughtExceptionHandler {
|
|||||||
public void uncaughtException(@NonNull final Thread t, @NonNull final Throwable exception) {
|
public void uncaughtException(@NonNull final Thread t, @NonNull final Throwable exception) {
|
||||||
final StringBuilder reportBuilder = new StringBuilder();
|
final StringBuilder reportBuilder = new StringBuilder();
|
||||||
reportBuilder.append("IMPORTANT: If sending by email, your email address and the entire content will be made public on GitHub issues.");
|
reportBuilder.append("IMPORTANT: If sending by email, your email address and the entire content will be made public on GitHub issues.");
|
||||||
reportBuilder.append("IMPORTANT: When possible, please describe the steps leading to this crash. Thank you for your cooperation.");
|
reportBuilder.append("\r\nIMPORTANT: When possible, please describe the steps leading to this crash. Thank you for your cooperation.");
|
||||||
reportBuilder.append("\r\n\r\nError report collected on: ").append(new Date().toString());
|
reportBuilder.append("\r\n\r\nError report collected on: ").append(new Date().toString());
|
||||||
|
|
||||||
reportBuilder
|
reportBuilder
|
||||||
|
Loading…
Reference in New Issue
Block a user