forked from organicmaps/organicmaps
[android] Fix the crosshair (PICK_POINT) API
It appears that the new streamlined logic introduced inc90c6bb
"Fix SecurityException when importing bookmarks" is not consistently reliable across all scenarios, as reported in #8350. Steps to reproduce: 1. Remove all versions of Organic Maps from the device except one. The #8350 issue doesn't reproduce without this step. 2. Run PickPoint example from organicmaps/api-android repository. 3. The API call will always return RESULT_CANCELED. Installing one more version of Organic Maps (Debug, Beta, Web, etc.) alongside the existing version fixes the API to return RESULT_OK. Debugging shows that FLAG_ACTIVITY_FORWARD_RESULT is not getting set in this scenario. Revert partiallyc90c6bb
"Fix SecurityException ..." to restore ActivityResultLauncher chain and re-add EXTRA_PICK_POINT, but keep the idea of forwarding of the original intent. Fixes #8350 Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
a7363d0556
commit
b2a6dd2717
4 changed files with 44 additions and 1 deletions
|
@ -12,6 +12,8 @@ import android.widget.Button;
|
||||||
import android.widget.CheckBox;
|
import android.widget.CheckBox;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
|
import androidx.activity.result.ActivityResultLauncher;
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts;
|
||||||
import androidx.annotation.CallSuper;
|
import androidx.annotation.CallSuper;
|
||||||
import androidx.annotation.Keep;
|
import androidx.annotation.Keep;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -22,6 +24,7 @@ import androidx.annotation.StyleRes;
|
||||||
import app.organicmaps.base.BaseMwmFragmentActivity;
|
import app.organicmaps.base.BaseMwmFragmentActivity;
|
||||||
import app.organicmaps.downloader.CountryItem;
|
import app.organicmaps.downloader.CountryItem;
|
||||||
import app.organicmaps.downloader.MapManager;
|
import app.organicmaps.downloader.MapManager;
|
||||||
|
import app.organicmaps.intent.Factory;
|
||||||
import app.organicmaps.location.LocationHelper;
|
import app.organicmaps.location.LocationHelper;
|
||||||
import app.organicmaps.location.LocationListener;
|
import app.organicmaps.location.LocationListener;
|
||||||
import app.organicmaps.util.Config;
|
import app.organicmaps.util.Config;
|
||||||
|
@ -59,6 +62,9 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity
|
||||||
@Nullable
|
@Nullable
|
||||||
private Dialog mAlertDialog;
|
private Dialog mAlertDialog;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
private ActivityResultLauncher<Intent> mApiRequest;
|
||||||
|
|
||||||
private boolean mAreResourcesDownloaded;
|
private boolean mAreResourcesDownloaded;
|
||||||
|
|
||||||
private static final int DOWNLOAD = 0;
|
private static final int DOWNLOAD = 0;
|
||||||
|
@ -187,6 +193,10 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity
|
||||||
UiUtils.setLightStatusBar(this, true);
|
UiUtils.setLightStatusBar(this, true);
|
||||||
setContentView(R.layout.activity_download_resources);
|
setContentView(R.layout.activity_download_resources);
|
||||||
initViewsAndListeners();
|
initViewsAndListeners();
|
||||||
|
mApiRequest = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), result -> {
|
||||||
|
setResult(result.getResultCode(), result.getData());
|
||||||
|
finish();
|
||||||
|
});
|
||||||
|
|
||||||
if (prepareFilesDownload(false))
|
if (prepareFilesDownload(false))
|
||||||
{
|
{
|
||||||
|
@ -205,6 +215,8 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity
|
||||||
protected void onSafeDestroy()
|
protected void onSafeDestroy()
|
||||||
{
|
{
|
||||||
super.onSafeDestroy();
|
super.onSafeDestroy();
|
||||||
|
mApiRequest.unregister();
|
||||||
|
mApiRequest = null;
|
||||||
Utils.keepScreenOn(Config.isKeepScreenOnEnabled(), getWindow());
|
Utils.keepScreenOn(Config.isKeepScreenOnEnabled(), getWindow());
|
||||||
if (mCountryDownloadListenerSlot != 0)
|
if (mCountryDownloadListenerSlot != 0)
|
||||||
{
|
{
|
||||||
|
@ -347,6 +359,14 @@ public class DownloadResourcesLegacyActivity extends BaseMwmFragmentActivity
|
||||||
// Disable animation because MwmActivity should appear exactly over this one
|
// Disable animation because MwmActivity should appear exactly over this one
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION | Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION | Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
||||||
|
|
||||||
|
// See {@link SplashActivity.processNavigation()}
|
||||||
|
if (Factory.isStartedForApiResult(intent))
|
||||||
|
{
|
||||||
|
// Wait for the result from MwmActivity for API callers.
|
||||||
|
mApiRequest.launch(intent);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import androidx.annotation.StringRes;
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
import app.organicmaps.display.DisplayManager;
|
import app.organicmaps.display.DisplayManager;
|
||||||
|
import app.organicmaps.intent.Factory;
|
||||||
import app.organicmaps.location.LocationHelper;
|
import app.organicmaps.location.LocationHelper;
|
||||||
import app.organicmaps.util.Config;
|
import app.organicmaps.util.Config;
|
||||||
import app.organicmaps.util.LocationUtils;
|
import app.organicmaps.util.LocationUtils;
|
||||||
|
@ -39,6 +40,9 @@ public class SplashActivity extends AppCompatActivity
|
||||||
|
|
||||||
private boolean mCanceled = false;
|
private boolean mCanceled = false;
|
||||||
|
|
||||||
|
@SuppressWarnings("NotNullFieldNotInitialized")
|
||||||
|
@NonNull
|
||||||
|
private ActivityResultLauncher<Intent> mApiRequest;
|
||||||
@SuppressWarnings("NotNullFieldNotInitialized")
|
@SuppressWarnings("NotNullFieldNotInitialized")
|
||||||
@NonNull
|
@NonNull
|
||||||
private ActivityResultLauncher<String[]> mPermissionRequest;
|
private ActivityResultLauncher<String[]> mPermissionRequest;
|
||||||
|
@ -66,6 +70,10 @@ public class SplashActivity extends AppCompatActivity
|
||||||
setContentView(R.layout.activity_splash);
|
setContentView(R.layout.activity_splash);
|
||||||
mPermissionRequest = registerForActivityResult(new ActivityResultContracts.RequestMultiplePermissions(),
|
mPermissionRequest = registerForActivityResult(new ActivityResultContracts.RequestMultiplePermissions(),
|
||||||
result -> Config.setLocationRequested());
|
result -> Config.setLocationRequested());
|
||||||
|
mApiRequest = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(), result -> {
|
||||||
|
setResult(result.getResultCode(), result.getData());
|
||||||
|
finish();
|
||||||
|
});
|
||||||
mShareLauncher = SharingUtils.RegisterLauncher(this);
|
mShareLauncher = SharingUtils.RegisterLauncher(this);
|
||||||
|
|
||||||
if (DisplayManager.from(this).isCarDisplayUsed())
|
if (DisplayManager.from(this).isCarDisplayUsed())
|
||||||
|
@ -107,6 +115,8 @@ public class SplashActivity extends AppCompatActivity
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
mPermissionRequest.unregister();
|
mPermissionRequest.unregister();
|
||||||
mPermissionRequest = null;
|
mPermissionRequest = null;
|
||||||
|
mApiRequest.unregister();
|
||||||
|
mApiRequest = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showFatalErrorDialog(@StringRes int titleId, @StringRes int messageId, Exception error)
|
private void showFatalErrorDialog(@StringRes int titleId, @StringRes int messageId, Exception error)
|
||||||
|
@ -172,6 +182,13 @@ public class SplashActivity extends AppCompatActivity
|
||||||
// https://github.com/organicmaps/organicmaps/pull/7287
|
// https://github.com/organicmaps/organicmaps/pull/7287
|
||||||
intent.setFlags(intent.getFlags() & (Intent.FLAG_ACTIVITY_FORWARD_RESULT | Intent.FLAG_GRANT_READ_URI_PERMISSION));
|
intent.setFlags(intent.getFlags() & (Intent.FLAG_ACTIVITY_FORWARD_RESULT | Intent.FLAG_GRANT_READ_URI_PERMISSION));
|
||||||
|
|
||||||
|
if (Factory.isStartedForApiResult(intent))
|
||||||
|
{
|
||||||
|
// Wait for the result from MwmActivity for API callers.
|
||||||
|
mApiRequest.launch(intent);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Config.setFirstStartDialogSeen(this);
|
Config.setFirstStartDialogSeen(this);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
finish();
|
finish();
|
||||||
|
|
|
@ -9,6 +9,9 @@ public class Const
|
||||||
public static final String EXTRA_PREFIX = AUTHORITY + ".extra";
|
public static final String EXTRA_PREFIX = AUTHORITY + ".extra";
|
||||||
public static final String ACTION_PREFIX = AUTHORITY + ".action";
|
public static final String ACTION_PREFIX = AUTHORITY + ".action";
|
||||||
|
|
||||||
|
// Request extras
|
||||||
|
public static final String EXTRA_PICK_POINT = EXTRA_PREFIX + ".PICK_POINT";
|
||||||
|
|
||||||
// Response extras
|
// Response extras
|
||||||
public static final String EXTRA_POINT_NAME = EXTRA_PREFIX + ".POINT_NAME";
|
public static final String EXTRA_POINT_NAME = EXTRA_PREFIX + ".POINT_NAME";
|
||||||
public static final String EXTRA_POINT_LAT = EXTRA_PREFIX + ".POINT_LAT";
|
public static final String EXTRA_POINT_LAT = EXTRA_PREFIX + ".POINT_LAT";
|
||||||
|
|
|
@ -28,11 +28,14 @@ import java.io.File;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import static app.organicmaps.api.Const.EXTRA_PICK_POINT;
|
||||||
|
|
||||||
public class Factory
|
public class Factory
|
||||||
{
|
{
|
||||||
public static boolean isStartedForApiResult(@NonNull Intent intent)
|
public static boolean isStartedForApiResult(@NonNull Intent intent)
|
||||||
{
|
{
|
||||||
return (intent.getFlags() & Intent.FLAG_ACTIVITY_FORWARD_RESULT) != 0;
|
return ((intent.getFlags() & Intent.FLAG_ACTIVITY_FORWARD_RESULT) != 0)
|
||||||
|
|| intent.getBooleanExtra(EXTRA_PICK_POINT, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class KmzKmlProcessor implements IntentProcessor
|
public static class KmzKmlProcessor implements IntentProcessor
|
||||||
|
|
Loading…
Add table
Reference in a new issue