forked from organicmaps/organicmaps
[Android] make sendbugreport use mShareLauncher
utils.sendBugReport refactoring added mShareLauncher as a parameter. Because the two PRs were created at the same time, my code didn't have it. now fixed :) also fixed indentation Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
parent
bf5825733e
commit
dc60a39ffe
1 changed files with 16 additions and 11 deletions
|
@ -21,6 +21,7 @@ import app.organicmaps.display.DisplayManager;
|
|||
import app.organicmaps.location.LocationHelper;
|
||||
import app.organicmaps.util.Config;
|
||||
import app.organicmaps.util.LocationUtils;
|
||||
import app.organicmaps.util.SharingUtils;
|
||||
import app.organicmaps.util.ThemeUtils;
|
||||
import app.organicmaps.util.Utils;
|
||||
import app.organicmaps.util.concurrency.UiThread;
|
||||
|
@ -41,6 +42,8 @@ public class SplashActivity extends AppCompatActivity
|
|||
@SuppressWarnings("NotNullFieldNotInitialized")
|
||||
@NonNull
|
||||
private ActivityResultLauncher<String[]> mPermissionRequest;
|
||||
@NonNull
|
||||
private ActivityResultLauncher<SharingUtils.SharingIntent> mShareLauncher;
|
||||
|
||||
@NonNull
|
||||
private final Runnable mInitCoreDelayedTask = this::init;
|
||||
|
@ -63,6 +66,7 @@ public class SplashActivity extends AppCompatActivity
|
|||
setContentView(R.layout.activity_splash);
|
||||
mPermissionRequest = registerForActivityResult(new ActivityResultContracts.RequestMultiplePermissions(),
|
||||
result -> Config.setLocationRequested());
|
||||
mShareLauncher = SharingUtils.RegisterLauncher(this);
|
||||
|
||||
if (DisplayManager.from(this).isCarDisplayUsed())
|
||||
{
|
||||
|
@ -109,18 +113,19 @@ public class SplashActivity extends AppCompatActivity
|
|||
{
|
||||
mCanceled = true;
|
||||
new MaterialAlertDialogBuilder(this, R.style.MwmTheme_AlertDialog)
|
||||
.setTitle(titleId)
|
||||
.setMessage(messageId)
|
||||
.setPositiveButton(
|
||||
R.string.report_a_bug,
|
||||
(dialog, which) -> Utils.sendBugReport(
|
||||
this,
|
||||
"Fatal Error",
|
||||
Log.getStackTraceString(error)
|
||||
)
|
||||
.setTitle(titleId)
|
||||
.setMessage(messageId)
|
||||
.setPositiveButton(
|
||||
R.string.report_a_bug,
|
||||
(dialog, which) -> Utils.sendBugReport(
|
||||
mShareLauncher,
|
||||
this,
|
||||
"Fatal Error",
|
||||
Log.getStackTraceString(error)
|
||||
)
|
||||
.setCancelable(false)
|
||||
.show();
|
||||
)
|
||||
.setCancelable(false)
|
||||
.show();
|
||||
}
|
||||
|
||||
private void init()
|
||||
|
|
Loading…
Add table
Reference in a new issue