this might seem like a silly question, but does an...
# android
j
this might seem like a silly question, but does anyone know if, using Android Studio (or plain old Gradle) I can isolate Kotlin warnings? the context here is we have an extremely large project with many warnings from both Kotlin and Java, and I’d like to isolate the Kotlin-only warnings. I know I could do this by writing a script to grep only *.kt files, but I figured there might be something built in I can use to do this
g
I don’t think that there is something in Kotlin Gradle Plugin for this You probably can use Gradle custom logger to somehow mark/collect logs from Kotlin compiler tasks, but to be honest I wouldn’t bother and use simple text search (and we do this on CI too)
👍 1