Posts

Bye build.gradle

Hello Geeks, It’s been a while since  Gradle  released support for  Kotlin  scripts. We have been writing  Gradle  script in a language called  Groovy  since ages. Let’s be honest, We all know that  Groovy  sucks! Half of the times I have been like this when there’s an issue Why does it needs -  No Auto-Completion No Content Assist No Navigation to Source Don’t know what to write and how to write Finally, We don’t have to learn Groovy for  Gradle  scripts. Now we can write our build scripts in  Kotlin .   Kotlin  script overcomes almost all the cons of  Groovy Added advantages over groovy (Old Pattern) Auto-Completion😎 Content Assist😍 Navigation to Source😱 Kotlin Extensions support😘 Errors at compile time instead of runtime💪 Sometimes it can be a bit messy to rewrite  gradle.build  into  gradle.build.kts  files, especially when all its cache is malfunctioning during that process.  Few times I had to  reopen  my project so that  Android Studio  can understand proper
Recent posts