breautek commented on code in PR #1311: URL: https://github.com/apache/cordova-docs/pull/1311#discussion_r1203910172
########## www/docs/en/dev/guide/platforms/android/index.md: ########## @@ -80,17 +81,71 @@ Download and install [Android Studio][android_studio]. Follow the instructions a Opening Android Studio for the first time will guide you through the process of installing the Android SDK packages. -#### Adding SDK Packages +#### SDK Packages -It is recommended to install the highest supported version of the SDK Platform and Build Tools based on the project's installed version of Cordova-Android. Please see the [Android API Level Support](#android-api-level-support) to find the supported version based on the Cordova-Android versions. +It is recommended to install the latest version of the SDK Platform & SDK Tools based on the project's installed version of Cordova-Android. Refer to the [Android API Level Support](#android-api-level-support) section to find which version is supported based on the Cordova-Android version. -In the Android Studio, open the **SDK Manager** (`Tools > SDK Manager`) and confirm that the following are installed for the targeted version of Android.: +##### Installing SDK Platform -- Android's **SDK Platform** for your targeted API Level -- **Android SDK Build-Tools** under the **SDK Tools** tab, for the targeted version. -- **Android SDK Command-line Tools (latest)** under the **SDK Tools** tab, for the latest version. +1. Open Android Studio's +2. Open **SDK Manager** (`Tools > SDK Manager`) +3. Click on the **SDK Platforms** tab +4. Select the Android version which matches the highest supported SDK based from the [Android API Level Support](#android-api-level-support) +5. Click Apply -#### Android SDK Tools +For example: If the project has installed `[email protected]`, the higest supported SDK is 33. In step 3, of the above, "Android 13.0 (Tiramisu)", should have been selected. + +<img src="{{ site.baseurl }}/static/img/guide/platforms/android/android-studio-electric-eel-20220101-2/sdk-manager/sdk-platform.png" style="width: 100%;" alt="Android SDK Platform" /> + +##### Installing Android SDK Build-Tools + +1. Open Android Studio's +2. Open **SDK Manager** (`Tools > SDK Manager`) +3. Click on the **SDK Tools** tab +4. Check **Show Package Details** +5. Expand **Android SDK Build-Tool** +6. Check the highest supported Build-Tools based on the [Android API Level Support](#android-api-level-support). +7. Click Apply + +For example: If the project has installed `[email protected]`, the higest supported SDK is 33. We want to select the higest available version of 33.x. At the time of this writting, "33.0.2" should have been selected in step 6. Review Comment: ```suggestion For example: If the project has installed `[email protected]`, the highest supported SDK is 33. We want to select the highest available version of 33.x. At the time of this writing, "33.0.2" should have been selected in step 6. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
