Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

How to delete android sdk documentation in android studio?


Asked by Justice Spencer on Nov 29, 2021 Android



Found, that if you download documentation via SDK manager (it will be located in .../sdk/docs/reference ), you're going to use only 24 API documentation. (Imagine, your project target SDK is 25 or 22, for instance). Delete documentation via SDK manager in Android Studio.
In this manner,
To uninstall an SDK, you can use the sdkmanager --uninstall [packages] command, replacing [packages] with the name of the SDK. For example: would uninstall the Nougat SDK. Alternatively, you can delete the corresponding folder on your machine without causing issues.
In fact, Delete documentation via SDK manager in Android Studio. Right there, download sources for interested APIs (sources already contain documentation). Also I found, that fetching documentation from sources a bit faster comparing with offline one inside .../sdk/docs/reference . Delete all javadoc paths from jdk.table.xml.
Keeping this in consideration,
You can install and update each package using Android Studio's SDK Manager or the sdkmanager command line tool. All of the packages are downloaded into your Android SDK directory, which you can locate as follows: In Android Studio, click File > Project Structure.
Likewise,
The sdkmanager is a command line tool that allows you to view, install, update, and uninstall packages for the Android SDK. If you're using Android Studio, then you do not need to use this tool and you can instead manage your SDK packages from the IDE .