From c174fb57f25a7e05e78ce4ec6e702003e8a83d4f Mon Sep 17 00:00:00 2001 From: Mauricio Date: Sun, 12 May 2024 12:17:33 -0300 Subject: [PATCH] Adding Android sdk paths for the different OSes (#183) --------- Co-authored-by: damios --- wiki/start/project-generation.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wiki/start/project-generation.md b/wiki/start/project-generation.md index 0ef6cf05..a53e04da 100644 --- a/wiki/start/project-generation.md +++ b/wiki/start/project-generation.md @@ -30,7 +30,10 @@ You are asked to provide the following parameters: * **Package**: the Java package under which your code will reside, e.g. `com.badlogic.mygame` * **Game Class**: the name of the main game Java class of your app, e.g. `MyGame` * **Destination**: the folder where your app will be created -* **Android SDK**: the location of your Android SDK. With Android Studio, to find out where it is, start Android Studio and click "Configure" (on recent versions, this is replaced by a three dots icon at the top right) -> "SDK Manager". By default it is in `/Users/username/Library/Android/sdk`
+* **Android SDK**: the location of your Android SDK. With Android Studio, to find out where it is, start Android Studio and click "Configure" (on recent versions, this is replaced by a three dots icon at the top right) -> "SDK Manager". By default the locations are: + * Linux: `~/Android/Sdk` + * Mac: `~/Library/Android/sdk` + * Windows: `%LOCALAPPDATA%\Android\Sdk` ![Android Studio welcome screen](/assets/images/dev/setup/1.png){: style="width: 700px;" }