Open Makgora opened 4 years ago
npm install --save react-native-telephony npx react-native run-android
Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. Could not resolve project :react-native-telephony. Required by: project :app Unable to find a matching configuration of project :react-native-telephony:
- None of the consumable configurations have attributes.
I know it's an old thread but to help ppl who are stuck with this:
In android/settings.gradle I added
include ':react-native-telephony'
project(':react-native-telephony').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-telephony/android/app')
right before
include ':app'
at the end of the file. That fixed the problem for me.
Hi, i'm having the same problem, any suggestion to solve this?
Hi !
I just installed the lib using:
npm install --save react-native-telephony
Then I tried to build my app:
npm run android
And I get this error :
I tried to link with
npm link react-native-telephony
I updtated settings.gradle file:
I updtated build.gradle file:
implementation project(':react-native-telephony')
And MainApplication.java :
What can I try ? Is this a problem someone already faced ?