September 2018
Beginner
156 pages
3h 28m
English
The create-react-native-app CLI is a very good option for scaffolding a React Native application and for testing the application on an emulator. However, to test DeepLinking we would need to include entries in the manifest file and thus it's required that we eject from the configuration using the following command:
npm run eject
The previous command will generate configuration files for iOS and Android platforms. This bare-minimum configuration allows you to generate a .ipa file for an iOS device and a .apk file for an Android device. In this section, we will see how we can generate the .apk file, which will then be deployed to an AVD.
After ejecting, you will see various directories and files generated ...
Read now
Unlock full access