Run youi-tv docs
from a command prompt for detailed documentation
You first need to install the JS dependencies and run the bundling server:
yarn install
yarn start
Now, run the following to build and run a YiRN application (in this case on OSX):
cd youi/
youi-tv build -p osx
At this point you can run the application from commandline from (youi/build/osx
) or open in your IDE.
You first need to install the JS dependencies:
yarn install
Now, run the following to build and run a YiRN application (in this case on OSX):
cd youi/
youi-tv build -p osx --local --file index.youi.js
At this point you can run the application from commandline from (youi/build/osx
) or open in your IDE. The application assets will include a bundled copy of the JS application.
To add more capabilities to your app, see the quickstart guide.
Note:
Ensure that
babel-preset-react-native
is part of package.json for Appium to work with the app you build. Ifbabel-preset-react-native
is not part of package.json, runyarn add [email protected]
on the terminal to add it to package.json.