2

Why my Android Studio's quick documentation show links instead of correct content?

My Gradle: com.google.android.gms:play-services-location:17.0.0@aar

My Android Studio: enter image description here

But tutorial's video can show quick documentation correct content,Why?

Video's gradle: Gradle: com.google.android.gms:play-services-location:18.0.0@aar

enter image description here

Squall Huang
  • 647
  • 9
  • 20

1 Answers1

0

Gradle does not download javadoc jars by default. Please add the following to the root gradle file:

plugins {
    id 'idea'
}
idea {
    module {
        downloadJavadoc = true
    }
}

See also similar discussion: https://stackoverflow.com/a/33653146/13482100

Kuzneц
  • 707
  • 4
  • 7
  • Hi Kuzneu: Answer is not as your provided method. Please see the following link for result.↓ https://youtrack.jetbrains.com/issue/IDEA-267673 – Squall Huang Apr 28 '21 at 08:37