I was just wondering why that line of code exists in my gradle configuration
Android gradle apply plugin: 'com.android.application'
I was just wondering why that line of code exists in my gradle configuration
Android gradle apply plugin: 'com.android.application'
Gradle is a general-purpose build system. It uses plugins to teach it how to build different types of software. com.android.application is a Gradle plugin that teaches Gradle how to build Android applications, just as com.android.library is a plugin that teaches Gradle how to build Android library projects. There are many plugins available for Gradle, to teach it how to build other sorts of systems or augment other plugins.