0

I need to hide certain public functions from the API. I cannot mark them as deprecated and hide them, as I still need the docs to show description for real deprecated methods. After a bit of searching, I'm sure my solution is a Doclet that subclasses the default Doclet used in Android Studio, But I don't know how to do this

Edit: I tried using the @hide tag, but the tag is not supported by the default Doclet used by Android Studio

ColonD
  • 954
  • 10
  • 28

1 Answers1

0

You don't need to subclass anything. Just use @hide annotation. Check this answer

Arthur
  • 769
  • 7
  • 17