forked from organicmaps/organicmaps
[android]: Initialize core before handle received broadcast
Sometimes we can receive broadcast before the core is managed to be initialized. In this case, we need to initialize it. Signed-off-by: Daniil Popov <int02h@gmail.com>
This commit is contained in:
parent
0ff5f27119
commit
a4cbcad18b
2 changed files with 28 additions and 3 deletions
22
android/src/com/mapswithme/maps/MwmBroadcastReceiver.java
Normal file
22
android/src/com/mapswithme/maps/MwmBroadcastReceiver.java
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
package com.mapswithme.maps;
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
public abstract class MwmBroadcastReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
|
protected abstract void onReceiveInitialized(@NonNull Context context, @Nullable Intent intent);
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public final void onReceive(Context context, Intent intent)
|
||||||
|
{
|
||||||
|
MwmApplication app = MwmApplication.from(context);
|
||||||
|
if (!app.arePlatformAndCoreInitialized() && !app.initCore())
|
||||||
|
return;
|
||||||
|
onReceiveInitialized(context, intent);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,23 +1,26 @@
|
||||||
package com.mapswithme.maps.location;
|
package com.mapswithme.maps.location;
|
||||||
|
|
||||||
import android.content.BroadcastReceiver;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.mapswithme.maps.MwmBroadcastReceiver;
|
||||||
import com.mapswithme.util.CrashlyticsUtils;
|
import com.mapswithme.util.CrashlyticsUtils;
|
||||||
import com.mapswithme.util.log.Logger;
|
import com.mapswithme.util.log.Logger;
|
||||||
import com.mapswithme.util.log.LoggerFactory;
|
import com.mapswithme.util.log.LoggerFactory;
|
||||||
|
|
||||||
import static com.mapswithme.maps.MwmApplication.backgroundTracker;
|
import static com.mapswithme.maps.MwmApplication.backgroundTracker;
|
||||||
|
|
||||||
public class TrackRecorderWakeReceiver extends BroadcastReceiver
|
public class TrackRecorderWakeReceiver extends MwmBroadcastReceiver
|
||||||
{
|
{
|
||||||
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
||||||
private static final String TAG = TrackRecorderWakeReceiver.class.getSimpleName();
|
private static final String TAG = TrackRecorderWakeReceiver.class.getSimpleName();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onReceive(Context context, Intent intent)
|
public void onReceiveInitialized(@NonNull Context context, @Nullable Intent intent)
|
||||||
{
|
{
|
||||||
String msg = "onReceive: " + intent + " app in background = "
|
String msg = "onReceive: " + intent + " app in background = "
|
||||||
+ !backgroundTracker(context).isForeground();
|
+ !backgroundTracker(context).isForeground();
|
||||||
|
|
Loading…
Add table
Reference in a new issue