-
-
Notifications
You must be signed in to change notification settings - Fork 741
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright 2016 - 2017 Anton Tananaev ([email protected]) | ||
* Copyright 2016 - 2020 Anton Tananaev ([email protected]) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
|
@@ -16,7 +16,6 @@ | |
package org.traccar.client; | ||
|
||
import android.annotation.TargetApi; | ||
import android.app.Application; | ||
import android.app.Notification; | ||
import android.app.NotificationChannel; | ||
import android.app.NotificationManager; | ||
|
@@ -27,7 +26,9 @@ | |
import android.os.Build; | ||
import android.preference.PreferenceManager; | ||
|
||
public class MainApplication extends Application { | ||
import androidx.multidex.MultiDexApplication; | ||
|
||
public class MainApplication extends MultiDexApplication { | ||
|
||
public static final String PRIMARY_CHANNEL = "default"; | ||
|
||
|