From 863eda5cb97493b0d63ad457069d88c5c5b7a8f5 Mon Sep 17 00:00:00 2001 From: srdusr Date: Thu, 13 Jul 2023 22:54:25 +0200 Subject: Add Android Studio Setup Wizard info --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2d789a..bbcbecb 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,13 @@ NOTE: If Dart SDK is downloaded separately, make sure that the Flutter version o ```bash $ git clone https://github.com/flutter/flutter.git -b stable ``` +- Move flutter to the `/opt` directory +```bash +$ sudo mv flutter /opt/ +``` - Export Flutter over Dart by putting this into `.bashrc`/`.zshrc` or any similar shell configuration file to make it persistent across sessions ```bash -export PATH="/usr/bin/flutter:/usr/lib/dart/bin:$PATH" +export PATH="/opt/flutter:/usr/lib/dart/bin:$PATH" ``` - Set permissions since only Root has access ```bash @@ -183,6 +187,13 @@ $ sudo mysql $ tar -xvzf jetbrains-toolbox.tar.gz $ sudo mv jetbrains-toolbox /opt/jetbrains ``` +- Complete the Android Studio Setup Wizard + - Click `Next` on the Welcome Window + - Click `Custom` and `Next` + - Make sure a .android directory exists in the $HOME directory by typing in the following command in a terminal + ```bash + $ mkdir ~/.android + ``` - Put these lines into `.bashrc`/`.zshrc` or any similar shell configuration file to make it persistent across sessions ``` # Android Home -- cgit v1.2.3