diff options
author | Jose Luis Marti <joseluis.marti@gmail.com> | 2023-02-09 21:00:23 +0100 |
---|---|---|
committer | Jose Luis Marti <joseluis.marti@gmail.com> | 2023-02-09 21:00:23 +0100 |
commit | 14f56e6a714b41ef8e857a13d9e4705199e017fc (patch) | |
tree | 4b7280ca885dd348689321361a4f45fddeff7fb1 /docs | |
parent | fc8bbd0efe47aa75efedbaf8eeec09b13064c398 (diff) |
Update README.Android
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.Android.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/README.Android.md b/docs/README.Android.md index 0506686d62..c995552a1b 100644 --- a/docs/README.Android.md +++ b/docs/README.Android.md @@ -80,12 +80,12 @@ Create needed directories: mkdir -p $HOME/android-tools/android-sdk-linux/cmdline-tools ``` -Extract Android SDK: +Extract Android SDK Command line tools: ``` unzip $HOME/Downloads/commandlinetools-linux-6200805_latest.zip -d $HOME/android-tools/android-sdk-linux/cmdline-tools ``` -**NOTE:** Since we're using the latest SDK available, filename can change over time. Adapt the `unzip` command accordingly. +**NOTE:** Since we're using the latest SDK Command line tools available, filename can change over time. Adapt the `unzip` command accordingly. Extract Android NDK: ``` @@ -98,8 +98,8 @@ Before Android SDK can be used, you need to accept the licenses and configure it cd $HOME/android-tools/android-sdk-linux/cmdline-tools/tools/bin ./sdkmanager --sdk_root=$(pwd)/../.. --licenses ./sdkmanager --sdk_root=$(pwd)/../.. platform-tools -./sdkmanager --sdk_root=$(pwd)/../.. "platforms;android-28" -./sdkmanager --sdk_root=$(pwd)/../.. "build-tools;28.0.3" +./sdkmanager --sdk_root=$(pwd)/../.. "platforms;android-33" +./sdkmanager --sdk_root=$(pwd)/../.. "build-tools;30.0.3" ``` ### 3.3. Create a key to sign debug APKs |