Reputation: 188
I am a beginner,
I want to download all documentation of this site:
https://developer.android.com/studio/intro/index.html
But I cannot do it.
Upvotes: 0
Views: 5345
Reputation: 31
A few days ago I downloaded all of the documents available on the site https://developer.android.com/ for my own personal use. These documents are now uploaded to Google Drive as two separate archives for public usage, in the hope that it will be useful to those who need it, but WITHOUT ANY WARRANTY.
The first archive is: android-developers-docs-2020-02-23.tar.xz with the following specifications:
The second archive (for those who need to access code samples offline too) is: android-developers-gits-2020-02-23.tar.xz with the following specifications:
After unpacking the second archive file, please do:
cd android-developers-docs
mv github.com github.com.OLD
ln -fs github.com.git github.com
Upvotes: 3
Reputation: 13442
I am posting an answer because as of the latest Android Studio(2.3), it is found in your AppData
directory which is hidden by default. Find it here:
C:\Users\<Your User Name>\AppData\Local\Android\sdk\docs\
You can start with index.html
and post opening, you will find the search in the top right hand side corner.
Upvotes: 3
Reputation: 37404
You don't need to download , it's already included in android sdk
so go to your android sdk folder and look for docs
folder
e.g
c:\....yourpath..\sdk\docs
and in this folder look for something name as index.html
page
Note: look for your sdk in the specific drive e.g E,D
most of site content will be there but don't expect the complete content/resources of other linked sites
Upvotes: 7