diff options
author | thebestnom <shoval.arad@gmail.com> | 2020-04-16 11:48:53 +0300 |
---|---|---|
committer | thebestnom <shoval.arad@gmail.com> | 2020-05-10 19:03:44 +0300 |
commit | d0ced7a481fb6cec9f58f234c28cd0ad946f855b (patch) | |
tree | 1d558c718058f713fdfccb6a9b1b53e4f350ece7 /platform/android/java/lib/src/com | |
parent | 6a0473bcc23c096ef9ee929632a209761c2668f6 (diff) |
Android: Migrate deprecated support library to AndroidX
Diffstat (limited to 'platform/android/java/lib/src/com')
-rw-r--r-- | platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java b/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java index 0abaf2e052..d481c22204 100644 --- a/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java +++ b/platform/android/java/lib/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java @@ -29,9 +29,9 @@ import com.google.android.vending.expansion.downloader.IDownloaderClient; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; -import android.os.Build; import android.os.Messenger; -import android.support.v4.app.NotificationCompat; + +import androidx.core.app.NotificationCompat; /** * This class handles displaying the notification associated with the download |