Skip to content

Latest commit

 

History

History
 
 

README.md

This project was bootstrapped with Create React Native App.

Available Scripts

We use Yarn as Dependency Manager, so you can use all the scripts below with yarn instead of npm.

start

npm start # or yarn start 

Runs your app in development mode.

Open it in the Expo app on your phone to view it. It will reload if you save edits to your files, and you will see build errors and logs in the terminal.

Sometimes you may need to reset or clear the React Native packager's cache. To do so, you can pass the --reset-cache flag to the start script:

npm start --reset-cache # or yarn start --reset-cache 

start-dev

npm run start-dev # or yarn start-dev 

Runs your application in development with launching gulp script which watches react-native-ui-kitten source changes.

This script might be very helpful if you're debugging or you would like to contribute our UI-Kit.

ios

npm run ios # or yarn ios 

Like npm start, but also attempts to open your app in the iOS Simulator if you're on a Mac and have it installed.

android

npm run android # or yarn android 

Like npm start, but also attempts to open your app on a connected Android device or emulator. Requires an installation of Android build tools (see React Native docs for detailed setup).

watch-lib

npm run watch-lib # or yarn watch-lib 

Starts gulp script witch watching for react-native-ui-kitten library changes.

Use this script before npm start or use npm run start-dev which runs npm start and npm run watch-lib both.