react-native-send-intent icon indicating copy to clipboard operation
react-native-send-intent copied to clipboard

Installation guides is not correct

Open criss02-cs opened this issue 3 years ago • 2 comments

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 avatar Sep 08 '22 10:09 criss02-cs

@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')
}

YDisa avatar Oct 27 '22 13:10 YDisa

if Gradle version >= 7.0

dependencies {
    ...
    implementation project(':react-native-send-intent')
}

Choyeongdeok avatar Apr 28 '23 06:04 Choyeongdeok