A simple contact book app using ReactXP and NoSQLProvider.
npm install --save react-native-sqlite-storage
npm install -g react-native-cli
react-native link react-native-sqlite-storage
cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../
cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh && cd ../../../../
In android/app/app.iml
:
<orderEntry type="module" module-name="react-native-sqlite-storage" />
In android/app/build.gradle
:
dependencies {
...
implementation project(':react-native-sqlite-storage')
}
In android/app/src/main/java/com/rxpcontactbook/MainApplication.java
:
import org.pgsqlite.SQLitePluginPackage;
...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new SQLitePluginPackage(),
...
);
}
In android/settings.gradle
:
include ':react-native-sqlite-storage'
project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/src/android')