So I been messing around and created a library with my favorite methods that I use several projects. But those annoying unused method and method can be private (because it's intended to be used publicly but also used in the library somewhere else) warnings keep appearing and I want to keep the library clean.
Is there a way to tell the compiler that a class or file is intended to be used as a library?
Currently am using @Suppress("unused", "MemberVisibilityCanBePrivate")
but this just feels wrong.