Impossible To Install Sqlite On React Native Project
Solution 1:
Hey I found the solution! Just go to your settings.gradle file and change THIS LINE project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/src/android')
TO THIS project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/platforms/android')
Greetings!
Solution 2:
Same problem :( Could not determine the dependencies of task ':app:preDebugBuild'.
Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. Could not resolve project :react-native-sqlite-storage. Required by: project :app Unable to find a matching configuration of project :react-native-sqlite-storage: None of the consumable configurations have attributes.
Post a Comment for "Impossible To Install Sqlite On React Native Project"