Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to attach javadoc to Google Play Services in Android Studio?

Reference documentation for com.google.android.gms:play-services can be found at <android-sdk>/extras/google/google_play_services/docs/reference but I can't figure out how to attach it in Android Studio.

Android Studio 0.8.4, Gradle Android Plugin 0.12.2

like image 507
delor Avatar asked Aug 11 '14 09:08

delor


1 Answers

In Android Studio 1.5.1 this is how I've managed to add the javadocs:

  1. Right click in Project panel > External libraries > lib-name
  2. Click Library properties Lib props
  3. Click specify documentation URL
  4. And specify an URL. For my machine it was file:///opt/android-sdk/extras/google/google_play_services/docs/reference Add doc url
  5. The result was: added jdoc
  6. And after a project sync I could browse the javadoc of the google play services google play services maps javadoc
like image 54
Matyas Avatar answered Nov 04 '22 15:11

Matyas