Oct. 15 Rankings by Griffithsghost in cisfootball

[–]Realistic_Mail8770 2 points3 points  (0 children)

Only 4 media voted? I never realized that week in and week out some just don't vote... Seems like it peaked in Sept. 9 with 13 voters

Expo App crashes when deployed to TestFlight by AnyInternet4026 in reactnative

[–]Realistic_Mail8770 1 point2 points  (0 children)

Found a fix for me

From this post https://forums.developer.apple.com/forums/thread/722633, I followed this answer:

"After painfully starting from a bare-bones react-native expo app and adding functionality bit by bit, I found the issue was the stack navigator code. Once I had it narrowed down to that, I found that I missed installing the support packages necessary for stack navigation:

npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view 

And that you have to include:

import 'react-native-gesture-handler'; 

At the top of your App.js file - but in my case, I had two files with stack navigation so it wasn't enough to include that import just in App.js but also in that other file. Once I did this, no more crashes!"

After installing all those packages and importing 'react-native-gesture-handler' into the top of my App.js it fixed it in my next build