Loading

Installing


This section will help you walk through the minimum step by step to run Kindie mobile application


Inorder to do this step, please make sure all compatibility requirements were installed

After install all development OS at previous step, now you have to install some tools, dependencies to run the Kindie mobile app:


Step 1: Download source code, unzip and open project by Visual Studio Code:


Note: You can toogle terminal by hot keys Ctrl + `

Step 2: To install the React Native command-line utility, run the below command in your terminal:

npm install -g react-native-cli
React Native is an open-source mobile application framework created by Facebook.It is used to develop applications for Android, iOS, Web and UWPby enabling developers to use React along with native platform capabilities. You can refer full document about React Native here:

https://facebook.github.io/react-native/


Step 3: Install others npm Package Manager:

npm install

Step 4: Run the app

4.1 If you need to build for Android device:

react-native run-android

4.2 If you need to build for iOS device:

cd ios 
pod install
cd ..
react-native run-ios

Note that for react-native run-android to work, you should have an open Android emulator or an Android device with USB Debugging enabled connected to your system via a USB cable.

If everything is set up correctly, you should see your new app running in your Android emulator shortly.

Have fun!

Leave a Reply

Your email address will not be published. Required fields are marked *