<@U092N7GGG> regarding kotlin source folder, when ...
# android
d
@yole regarding kotlin source folder, when Kotlin support is added to Android project(using Android Studio) the plugin adds to the gradle file
Copy code
sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
        androidTest.java.srcDirs += 'src/androidTest/kotlin'
        test.java.srcDirs += 'src/test/kotlin'
    }
I think it would be better to avoid that since its not needed anymore
👍 6