[android] Fixed crash - Native job service disallowed for old api versions

This commit is contained in:
Dmitry Donskoy 2018-09-17 14:43:29 +03:00 committed by Aleksandr Zatsepin
parent 9cbdd42975
commit 063a78ed3d

View file

@ -10,7 +10,8 @@ import com.mapswithme.util.log.LoggerFactory;
public class FirebaseJobService extends JobService
{
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
private static final String TAG = NativeJobService.class.getSimpleName();
private static final String TAG = FirebaseJobService.class.getSimpleName();
@SuppressWarnings("NullableProblems")
@NonNull
private JobServiceDelegate mDelegate;