Reputation: 1
implementation 'com.facebook.react:react-native:[0.32,)'
I tried to do this but got the same error:
and I update all required dependences and still same error and can't solve it so my some soultions if any one face same error
Upvotes: -1
Views: 55
Reputation: 188
Replace implementation 'com.facebook.react:react-native:[0.32,)'
with implementation "com.facebook.react:react-native:+"
Upvotes: 0