You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/setup/linux.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ You will need Node, NativeScript CLI (command line interface), Android Studio an
13
13
14
14
**Android Studio** is not strictly necessary — however it provides an easy-to-use interface for installing and managing the Android SDKs.
15
15
16
-
To install **Node** follow the [instructions specific to your Linux distribution](https://nodejs.org/en/download/package-manager/). We recommend using the latest version, however anything above **Node 12** should be fine.
16
+
To install **Node** follow the [instructions specific to your Linux distribution](https://nodejs.org/en/download/package-manager/). We recommend using the latest version, however anything above **Node 14** should be fine.
17
17
18
18
:::warning Note
19
19
We have gone through these steps on **Ubuntu 20.04** and noted the commands we used, however depending on your Linux distribution, the commands may be different. We cannot provide commands for all possible distributions, so please refer to the linked documentation to find the correct commands you need to run.
@@ -33,8 +33,8 @@ To confirm **Node** is installed correctly, run:
33
33
$ node -v
34
34
$ npm -v
35
35
# Should print something like
36
-
$:v15.x.x
37
-
7.x.x
36
+
$:v22.x.x
37
+
10.x.x
38
38
```
39
39
40
40
A **JDK version 8 or greater** is required, and you have a couple options:
@@ -46,8 +46,8 @@ A **JDK version 8 or greater** is required, and you have a couple options:
46
46
<!-- tab:Ubuntu 20.04 -->
47
47
48
48
```cli
49
-
# On Ubuntu 20.04, we used the following command to install OpenJDK 14
50
-
sudo apt-get install -y openjdk-14-jdk
49
+
# On Ubuntu 20.04, we used the following command to install OpenJDK 17
50
+
sudo apt-get install -y openjdk-17-jdk
51
51
```
52
52
53
53
To confirm **JDK** is installed correctly, run:
@@ -56,11 +56,11 @@ To confirm **JDK** is installed correctly, run:
Copy file name to clipboardExpand all lines: content/setup/windows.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ If any of the above failed, we recommend checking out the [Microsoft Docs for Se
46
46
To install a **JDK** (using the prebuilt OpenJDK binaries from [Adoptium](https://adoptium.net/)) open an Administrator Command Prompt (right click and select "Run as Administrator") and run the following command:
47
47
48
48
```cli
49
-
choco install -y temurin11
49
+
choco install -y temurin17
50
50
```
51
51
52
52
Once installed, you might need to add it to your `Path`. First, check if you need to add it to your `Path` by opening a new Command Prompt and running the following:
0 commit comments