diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-16 09:03:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 09:03:17 +0200 |
commit | d999071edf137fa8b125c9aa057e3936fe54aed0 (patch) | |
tree | bbaed444307cdaa225b14dc9592e3e5c39742fd8 /platform/android/java/lib/src/com | |
parent | 5b2c0c342ac0777b01d3a8a852b09bf4ed47a0ee (diff) | |
parent | d0ced7a481fb6cec9f58f234c28cd0ad946f855b (diff) |
Merge pull request #37924 from thebestnom/migrate-to-androidX
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 |