:thinking_face: you could use a script to count ho...
# android
j
🤔 you could use a script to count how many kotlin files you have in your project
find . -type f -iname \*.kt | sed 's/.*\.//' | sort | uniq -c
and do the same for the java files, no?