mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-30 02:39:17 -05:00
Updated Working for Android (markdown)
@ -19,12 +19,12 @@ Alternatively, you can just install the required files manually. To do that, sta
|
|||||||
- Decompress downloaded `sdk-tools-...` file into a folder named `android-sdk`. One of the included tools is the [sdkmanager]((https://developer.android.com/studio/command-line/sdkmanager)), a command line utility to install required packages.
|
- Decompress downloaded `sdk-tools-...` file into a folder named `android-sdk`. One of the included tools is the [sdkmanager]((https://developer.android.com/studio/command-line/sdkmanager)), a command line utility to install required packages.
|
||||||
- From command line, navigate to `android-sdk/tools/bin` and execute the following commands:
|
- From command line, navigate to `android-sdk/tools/bin` and execute the following commands:
|
||||||
```
|
```
|
||||||
sdkmanager --update
|
sdkmanager --sdk_root=<your_path_sdk> --update
|
||||||
sdkmanager --list
|
sdkmanager --sdk_root=<your_path_sdk> --list
|
||||||
sdkmanager --install build-tools;29.0.3
|
sdkmanager --sdk_root=<your_path_sdk> --install build-tools;29.0.3
|
||||||
sdkmanager --install platform-tools
|
sdkmanager --sdk_root=<your_path_sdk> --install platform-tools
|
||||||
sdkmanager --install platforms;android-28
|
sdkmanager --sdk_root=<your_path_sdk> --install platforms;android-29
|
||||||
sdkmanager --install extras;google;usb_driver
|
sdkmanager --sdk_root=<your_path_sdk> --install extras;google;usb_driver
|
||||||
```
|
```
|
||||||
With those commands you're installing all required tools. It includes: `tools`, `build-tools`, `platform-tools`, `platforms\android-28` api level and also `extras\google\usb_driver` (that you need to install to connect to your device).
|
With those commands you're installing all required tools. It includes: `tools`, `build-tools`, `platform-tools`, `platforms\android-28` api level and also `extras\google\usb_driver` (that you need to install to connect to your device).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user