Skip to content

Commit

Permalink
Update SDWebImage and Fresco to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
abhayastudios committed Oct 31, 2020
1 parent 1df5b6c commit 02f57a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion platforms/android/include.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ android {
}

dependencies {
compile "com.facebook.fresco:fresco:2.1.0"
compile "com.facebook.fresco:fresco:2.3.0"
}
2 changes: 1 addition & 1 deletion platforms/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pod 'SDWebImage', '~> 4.4.1'
pod 'SDWebImage', '~> 5.9.4'
2 changes: 1 addition & 1 deletion web-image-cache.ios.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web-image-cache.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export function preFetchImage(urls: Array<string>) : Promise<void> {
if (!urls || !Array.isArray(urls) || urls.length<1) {
reject(`preFetchImage: param should be array of urls`);
} else {
SDWebImagePrefetcher.sharedImagePrefetcher().prefetchURLsProgressCompleted(urls, null, (finishedCount, skippedCount) => {
SDWebImagePrefetcher.sharedImagePrefetcher.prefetchURLsProgressCompleted(urls, null, (finishedCount, skippedCount) => {
resolve();
});
}
Expand Down

0 comments on commit 02f57a3

Please sign in to comment.