mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
chore: bump freso for 16KB page size compatibility and fix build issues
This commit is contained in:
parent
6a5a1104ee
commit
c0cffd4cbb
3 changed files with 5 additions and 3 deletions
|
|
@ -226,6 +226,7 @@ dependencies {
|
|||
implementation(libs.rxbinding)
|
||||
implementation(libs.rxbinding.appcompat)
|
||||
implementation(libs.facebook.fresco)
|
||||
implementation(libs.facebook.fresco.middleware)
|
||||
implementation(libs.apache.commons.lang3)
|
||||
|
||||
// UI
|
||||
|
|
|
|||
|
|
@ -45,10 +45,10 @@ class SetWallpaperWorker(context: Context, params: WorkerParameters) :
|
|||
}
|
||||
}
|
||||
|
||||
override fun onFailureImpl(dataSource: DataSource<CloseableReference<CloseableImage>>?) {
|
||||
override fun onFailureImpl(dataSource: DataSource<CloseableReference<CloseableImage?>?>) {
|
||||
Timber.d("Error getting bitmap from image url %s", imageUrl.toString())
|
||||
showNotification(context, "Setting Wallpaper Failed", "Failed to download image.")
|
||||
dataSource?.close()
|
||||
dataSource.close()
|
||||
}
|
||||
}, CallerThreadExecutor.getInstance())
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue