December 2017
Beginner
372 pages
10h 32m
English
To build native applications using NativeScript, we need to install the dependencies for those mobile platforms. It is important to remember that if we want to build a NativeScript application for iOS and run it on an iOS-compatible device, we need to use macOS; for building Android applications, we can use both Windows and macOS.
NativeScript provides an easy single script for Windows and macOS that takes care of the responsibility to install all the tools and framework required.
The script for Windows is as shown in the following code:
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://www.nativescript.org/setup/win'))"
The script for iOS ...
Read now
Unlock full access