January 2019
Intermediate to advanced
592 pages
14h 30m
English
Let's create a new empty React Native app named realm-db.
Installing Realm requires running the following command:
react-native link
Because of this, we will be working on an app that is ejected from Expo. This means that you could create this app with the following command:
react-native init
Alternatively, you could create a new Expo app with the following command:
expo init
Then, you can eject the app that was created with Expo via the following command:
expo eject
Once you've created a React Native app, be sure to install the CocoaPods dependencies via the ios directory by using cd inside the new app and running the following:
pod install
Refer to Chapter 10, App Workflow and Third-party Plugins, for a in-depth explanation ...
Read now
Unlock full access