-
Notifications
You must be signed in to change notification settings - Fork 346
Description
Hey Skrafft! I'm trying to make this lib work but I'm being unsuccessfull.
I've tried doing the guide
include ':WebRTCModule', ':app'
project(':WebRTCModule').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-jitsi-meet/android')
implementation(project(':react-native-jitsi-meet'))
but gradle keeps failing saying that it cant find raect-native-jitsi-meet project, should we replace WebRTCModule to react-native-jitsi-meet in gradle.settings like this?
include ':react-native-jitsi-meet', ':app'
project(':react-native-jitsi-meet').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-jitsi-meet/android')
implementation(project(':react-native-jitsi-meet'))
Also this way I'm missing something because it doesnt work :(
Thanks