react-native-realm-path
v1.2.11
Published
A helper to Realm Path on AppGroup iOS.
Downloads
10
Readme
react-native-realm-path
This is for use on Rocket.Chat.ReactNative. You need to change app group identifier if you try to use this. If you link that and not change app group identifier you will have a runtime error. You need to use one of your app groups on app group identifier because you need to access a folder that exists.
Getting started
$ npm install react-native-realm-path --save
Mostly automatic installation
$ react-native link react-native-realm-path
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-realm-path
and addRNRealmPath.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNRealmPath.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNRealmPathPackage;
to the imports at the top of the file - Add
new RNRealmPathPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-realm-path' project(':react-native-realm-path').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-realm-path/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-realm-path')
Usage
import RNRealmPath from 'react-native-realm-path';
// TODO: What to do with the module?
RNRealmPath;