Could not find swiperefreshlayout.jar (androidx.swiperefreshlayout:swiperefreshlayout:1.0.0)

Viewed 1448

I'm trying to react-native run-android there is this problem??

Could not resolve all files for configuration ':react-native-screens:debugCompileClasspath'.
Could not find swiperefreshlayout.jar (androidx.swiperefreshlayout:swiperefreshlayout:1.0.0)
2 Answers

i fix it by change this for Navigation x5:

androidx.swiperefreshlayout:swiperefreshlayout:1.0.0

GO to

.\node_modules\react-native-screens\android\build.gradel

change the version of

implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'

to

implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-beta01'
Related