-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(MM-62375): OOM on gif #8573
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ | |
"expo-application": "6.0.1", | ||
"expo-crypto": "14.0.1", | ||
"expo-device": "7.0.1", | ||
"expo-image": "2.0.3", | ||
"expo-image": "2.0.4", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason to bump this? Just curious There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made a mistake when reading the changelog. And looking at the changes, I thought the addition of try..catch was going to help, but it didn't. Looking deeper, I noticed that it was already implemented in 2.0.3, not a new change in 2.0.4. Changelog for 2.0.4:
So it's pretty moot. |
||
"expo-linear-gradient": "14.0.1", | ||
"expo-store-review": "8.0.0", | ||
"expo-video-thumbnails": "9.0.2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
diff --git a/node_modules/expo-image/android/build.gradle b/node_modules/expo-image/android/build.gradle | ||
index a85fb5e..ac568c1 100644 | ||
--- a/node_modules/expo-image/android/build.gradle | ||
+++ b/node_modules/expo-image/android/build.gradle | ||
@@ -44,7 +44,12 @@ dependencies { | ||
kapt "com.github.bumptech.glide:compiler:${GLIDE_VERSION}" | ||
api 'com.caverock:androidsvg-aar:1.4' | ||
|
||
- implementation "com.github.penfeizhou.android.animation:glide-plugin:3.0.2" | ||
+ implementation project(':frameanimation') | ||
+ implementation project(':gif') | ||
+ implementation("com.github.penfeizhou.android.animation:glide-plugin:3.0.2") { | ||
+ exclude group: 'com.github.penfeizhou.android.animation', module: 'frameanimation' | ||
+ exclude group: 'com.github.penfeizhou.android.animation', module: 'gif' | ||
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without exclusions, it will cause duplicate symbols error. Since glide-plugin will have frameanimation (required module) in other modules (apng, webp, etc). |
||
+ } | ||
Comment on lines
+10
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The fixes are in frameanimation & gif. Now in this PR (that will not get merged). |
||
implementation "com.github.bumptech.glide:avif-integration:${GLIDE_VERSION}" | ||
|
||
api 'com.github.bumptech.glide:okhttp3-integration:4.11.0' | ||
diff --git a/node_modules/expo-image/android/src/main/java/expo/modules/image/okhttp/ExpoImageOkHttpClientGlideModule.kt b/node_modules/expo-image/android/src/main/java/expo/modules/image/okhttp/ExpoImageOkHttpClientGlideModule.kt | ||
index 071907c..edf10c1 100644 | ||
--- a/node_modules/expo-image/android/src/main/java/expo/modules/image/okhttp/ExpoImageOkHttpClientGlideModule.kt | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to get this as project in expo-image/android/build.gradle, need to declare
frameanimation
andgif
here.