Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/start/ns-setup-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ Complete the following steps to set up NativeScript on your Linux development ma

5. Install the [Android SDK](http://developer.android.com/sdk/index.html).
1. Go to [Android Studio and SDK Downloads](https://developer.android.com/sdk/index.html#Other) and in the **SDK Tools Only** section download the package for Linux at the bottom of the page.
2. After the download completes, unpack the downloaded archive into a folder, such as `/usr/lib/android/sdk`
2. After the download completes, unpack the downloaded archive into a folder, such as `/usr/local/android/sdk`
* The archive you just extracted was the `tools` folder, so in this case it would be at: `/usr/local/android/sdk/tools`
3. Set the ANDROID_HOME environment variable. Open `~/.bashrc` and add the following:
<pre><code class="language-terminal">export ANDROID_HOME="/usr/lib/android/sdk/"
<pre><code class="language-terminal">export ANDROID_HOME="/usr/local/android/sdk/"
export PATH="${PATH}:${ANDROID_HOME}tools/:${ANDROID_HOME}platform-tools/"</code></pre>
4. In a text file which was opened, paste in the path to your variable (at the new line).

Expand Down