Li Junjie
Li Junjie
The progress bar animation is displayed all the time
SFAuthenticationSession start The ```SFAuthenticationSession``` does not close when the in-app is open
@stianjensen Try adding the following code to the RNScreens.podspec file in v3.27.0. ```ruby if ENV["USE_HERMES"] == nil || ENV["USE_HERMES"] == "1" s.dependency "hermes-engine" else s.dependency "React-jsi" end ```
I think it's because you're using ```use_frameworks!``` in your Podfile My solution was to add the following to ```RNScreens.podspec``` file: ```Ruby s.requires_arc = true # Add the code below if...