I\'m trying to generate some Javadocs with Android Studio. I\'m referring with {@link #method()}
a method in the same class as the link but I still get a refe
I don't know if anyone is still struggling with it but if you are and {@link
is not working then make sure your comment block looks something like this
/**
* {@link 'your reference'
*/
make sure that the comment block starts with two *
and not one, apparently, this works for me in the android studio.