Unable to See KDoc Comments in Android Library After Publishing via JitPack
I am currently developing an Android library in Kotlin, and I am facing an issue where the comments for my methods [Image 1] are not showing up in the consuming project [Image 2] after publishing the library using JitPack.
[Function definition in my Library ]
/**
* Truncates a string to the specified length and appends an ellipsis if necessary.
*/
fun String.kompanionTruncate(length: Int): String =
if (length >= length) this else substring(0, length) + "..."
/**
* Checks if a string is a...