<How gradle plugin ids are formatted?> Android pro...
# stackoverflow
u
How gradle plugin ids are formatted? Android project template in Android Studio generates two build-gradle files. One for the project and one for app module. In project level build-gradle file, it contain these lines: plugins { id 'com.android.application' version '7.2.1' apply false id 'org.jetbrains.kotlin.android' version '1.6.21' apply false } In app level build-gradle file, it contain these lines: plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' } I can understand these, project...