A seed project to create a native mobile application with Angular and React Native
A seed project to create a native mobile application with Angular and React Native
A seed project to create a native mobile application with Angular and React Native
http://angular.github.io/react-native-renderer/
npm install -g gulp react-native-clinpm installCreating the sample project:
gulp init to create the react-native projectAndroid:
gulp start.android to launch the sample on the connected device or emulator, and watch sources for auto update (if enabled in F2/shake dev menu)
use the Reload JS button after the initial red screeniOS:
gulp start.ios to launch the sample on an emulator, and watch sources for auto update (it will fail the first due to initial compilation, simply restart it)gulp watch and open .dist/app/ngReactNative/ios/ngReactNative.xcodeproj in Xcode and hit Rungulp test.browser to run tests in Chrome
e2e tests are run with Protractor and Appium which need to be installed globally: npm install -g protractor appium
They can be run in dev mode or in CI mode. The CI mode is slow as it builds a full standalone application, but can be used in SauceLabs.
Open 3 terminals and then:
appiumgulp start.ios, wait for the application to be fully loadedprotractor protractor.conf.ios.dev.js
You can modify the application or the tests, and run protractor again.Install xctool: brew install xctool
Build the application: ./scripts/build_app_ios.sh
Then open 2 terminals:
appiumprotractor protractor.conf.ios.ci.jsExperimental for now, a hack is needed in Protractor for now (remove call to driver.manage().timeouts().setScriptTimeout(...) in lib/runner.js)
In the configuration of the virtual device, make sure that the checkbox Use the Host GPU is active
Open 3 terminals and then:
appiumgulp start.android, wait for the application to be fully loadedprotractor protractor.conf.android.dev.jsYou can modify the application or the tests, and run protractor again.
Build the application: ./scripts/build_app_android.sh
Then open 2 terminals:
appiumprotractor protractor.conf.android.ci.jsNo open issues yet, or sync has not completed.