-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Xcode crashes after upgrade to version 7.0.0 #527
Comments
Yeah experiencing the same. |
same! |
I resolved an issue, but it looks very odd. |
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 ***@***.***> 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
<#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... |
@silentlight |
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 ***@***.***> 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
<#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 Thanks for suggestions here. |
@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 #499 (comment) |
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. |
So, this is how I fixed the problem (XCode instantly crashing): I had # 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 react-native-fast-image/ReactNativeFastImageExample/ios/ReactNativeFastImageExample/AppDelegate.m Line 20 in 5489f9e
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 |
@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 |
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: |
There's something wrong with the state of you project, pretty much impossible to debug without seeing it. I'd recommend cleaning, unlinking, removing node_modules, installing the latest version, Please open another issue with more specifics / if you can reproduce on a clean project. I know how frustrating this can be. It may be worth it to just create a new project with the CLI, reinstall your deps, move your code over. It'll take a few hours but it'll definitely fix your issue. |
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.
The text was updated successfully, but these errors were encountered: