React-Native-Couchbase-Lite is a React Native module providing an easy way to create offline-first, lightweight and performant hybrid mobile application for both iOS and Android platforms. This is an all-native wrapper over Couchbase Lite, which is a document-oriented database running right on the mobile devices.
#(Currently npm install will not work. Project isn't uploaded to npm.)
$ npm install react-native-couchbase-lite --save
or
$ yarn add react-native-couchbase-lite
$ react-native link react-native-couchbase-lite
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-couchbase-lite
and addRNReactNativeCbl.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNReactNativeCbl.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNReactNativeCblPackage;
to the imports at the top of the file - Add
new RNReactNativeCblPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-couchbase-lite' project(':react-native-couchbase-lite').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-couchbase-lite/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-couchbase-lite')