Is there a way to check kotlin coverage% (wrt Java...
# android
p
Is there a way to check kotlin coverage% (wrt Java) in the app?
e
If you mean how much kotlin code there is in the app vs how much java code there is, a command line utility like cloc -- Count Lines of Code will give you that kind of info. And actually if the code happens to be on github, it displays that info already (on the right hand side of the main repo page)
👍 1