Skip to content Skip to sidebar Skip to footer

Impossible To Install Sqlite On React Native Project

I'd like to start a new React Native project including SQLite Storagee. I've already done this before so I know that it should work, but not today... So I've init a new project in

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"