Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

react-native

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)
like image 737
amir marvi Avatar asked Feb 29 '20 07:02

amir marvi


1 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'
like image 116
iman.92 Avatar answered Nov 01 '22 04:11

iman.92