react-native-send-intent
react-native-send-intent copied to clipboard
Installation guides is not correct
I followed the installation guides on readme file, but i gaves me this error
Project with path ':RNSendIntentModule' could not be found in project ':app'
So i tried to change the path and I inserted :react-native-send-intent and it works fine, so please update the installation guides
@criss02-cs I could solve the problem right away thanks to you.
app/build.gradle
from
...
dependencies {
...
compile project(':RNSendIntentModule')
}
to
...
dependencies {
...
compile project(':react-native-send-intent')
}
if Gradle version >= 7.0
dependencies {
...
implementation project(':react-native-send-intent')
}