My Xcode was working fine and i was facing an issue on android while building it and got a solution that it can be solved after upgrading to 7.0.0 and i upgraded and it started working fine on android but after that when i run on IOS my Xcode got crashed i down grade my version again to "react-native-fast-image": "^5.1.2", and it start working again.
Yeah experiencing the same.
By the way my RN version is 0.59.9
same!
I resolved an issue, but it looks very odd.
I just copied folder Vendor, FastImage and FastImage.xcodeproj from older releases.
Any news? I`ve the same problem in my project after upgrade to 7.0 version.
i have same issue, my xcode crash everytime when i upgrade into 7.0.2
Use this for time being
On Fri, Aug 23, 2019 at 9:55 AM Hồ Duy Nháºt Linh notifications@github.com
wrote:
i have same issue, my xcode crash everytime when i upgrade into 7.0.2
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/DylanVann/react-native-fast-image/issues/527?email_source=notifications&email_token=AKY2KS7SFYR42LQZXQR7KC3QF5RDVA5CNFSM4IGZKNCKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD47CSHA#issuecomment-524167452,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AKY2KS4COARW4DXVCMS44JDQF5RDVANCNFSM4IGZKNCA
.
--
Thanks & Regards
Trinadh Koya
Work Hard .Have fun.Make History
I have the same issue.
I have the same issue with version 7.0.2 (RN 0.65). It crushes my Xcode. When I go back to 6.1.1 Android build does not work. What a nightmare...
I have the same issue with version 7.0.2 (RN 0.65). It crushes my Xcode. When I go back to 6.1.1 Android build does not work. What a nightmare...
@silentlight
currently 7.0.x of iOS is not wokring
use 6.1.1 and then fix the build.gradle of android(react-native-fast-image) as '7.0.x' build.gradle file
(6.1.1 using Glide that not supported android x)
Use this for time being
https://www.npmjs.com/package/react-native-fast-img
On Tue, Sep 3, 2019 at 1:48 PM HYUNGU, KANG notifications@github.com
wrote:
I have the same issue with version 7.0.2 (RN 0.65). It crushes my Xcode.
When I go back to 6.1.1 Android build does not work. What a nightmare...currently 7.0.x of iOS is not wokring
use 6.1.1 and then fix the build.gradle of
android(react-native-fast-image) as '7.0.x' build.gradle file
(6.1.1 using Glide that not supported android x)—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/DylanVann/react-native-fast-image/issues/527?email_source=notifications&email_token=AKY2KSZ7I7SVYOGN3HTM7ZDQHYMT7A5CNFSM4IGZKNCKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD5XNAVY#issuecomment-527355991,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AKY2KS3D7HIO5SRQG2GO2R3QHYMT7ANCNFSM4IGZKNCA
.
--
Thanks & Regards
Trinadh Koya
Work Hard .Have fun.Make History
I stayed with latest version, but I did copy ios directory from 6.1.1 version
That's work fine I hope changes will fix the problem soon
I just spend 3 days trying to know why my Xcode project crashed
Thanks for suggestions here.
a coworker found that adding this line xcode doesn't crash. I don't know why that line isn't on master, and it seems like the only commit that affected it was the #486, weird thing is that line wasn't removed on that PR.
@trinadhkoya9 - I am receiving 'SDWebImage/SDAnimatedImageView+WebCache.h' file not found
the same, how to fix it?
For those struggling with the 7.0.0, I came up with the solution to use 6.1.1 and keep Android running. See my comment here https://github.com/DylanVann/react-native-fast-image/issues/499#issuecomment-541251477
I forked the repo to fix this (temporarily) it uses ios in version 6.1.1 and android in version 8.0.0 and doesn't crash.
To use it just change in package.json this:
"react-native-fast-image": "eleddie/react-native-fast-image#master",
Remember to link afterwards if needed
So, this is how I fixed the problem (XCode instantly crashing):
I had react-native-fast-image manually linked in the project whereas SDWebImage was in the pods.
# Before
pod 'SDWebImage', '= 4.4.6'
pod 'SDWebImage/GIF', '= 4.4.6'
pod 'SDWebImage/WebP', '= 4.4.6'
So, what I did: I moved react-native-fast-image to the pods and cleaned the SDWebImage imports. I ended up with a podfile like this:
# After
pod 'RNFastImage', path: '../node_modules/react-native-fast-image/RNFastImage.podspec'
pod 'SDWebImage'
pod 'SDWebImageFLPlugin'
pod 'SDWebImageWebPCoder'
Don't forget to add this line at the top of your AppDelegate.m: https://github.com/DylanVann/react-native-fast-image/blob/5489f9ec4bbc80c657ac351130771637d1f61672/ReactNativeFastImageExample/ios/ReactNativeFastImageExample/AppDelegate.m#L20
And that's it, it solved the problem for me, XCode is not crashing anymore and the app is compiling well!
same issue
Any updates on this ?
any updates on it ?
Still No update? .... I am off
same issue
Xcode 11.3.1
react-native 0.63.3
react-native-fast-image 8.3.3
@estemilia ... What is the purpose of using react-native-fast-image, Let me give u a suggestion of another library to use as an alternative
@Joshmatjjen sorry for late
purpose: show image faster without flickering using cache
suggestion : downgrade [email protected] (xcode stop crash)
For anyone that updates this package from an older version, we updated from v4 to v8 for a fix on Android but updating broke iOS. You need to make sure the package is not manually linked as this is not needed anymore and causes xcode to crash.
Run the following command:
npx react-native unlink react-native-fast-image
Most helpful comment
I have the same issue with version 7.0.2 (RN 0.65). It crushes my Xcode. When I go back to 6.1.1 Android build does not work. What a nightmare...