Is there any better way to find kotlin class files...
# android
t
Is there any better way to find kotlin class files after compilation than this:
Copy code
android.applicationVariants.all { variant ->
    variant.outputs.all { output ->

        def fullName = ""
        output.name.tokenize('-').eachWithIndex { token, index ->
            fullName = fullName + (index == 0 ? token : token.capitalize())
        }

        def path = project.buildDir.path + "/tmp/kotlin-classes/" + fullName
    }
}