Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are "kotlin-android" and "org.jetbrains.kotlin.android" the same?

I see the gradle plugins being used interchangeably in the project.

    plugins {
        id("kotlin-android")
    }
    plugins {
        id("org.jetbrains.kotlin.android")
    }

Are the same?

like image 428
LightYearsBehind Avatar asked Nov 14 '22 18:11

LightYearsBehind


1 Answers

Refer to library "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31", "kotlin-android.properties" and "org.jetbrains.kotln.android.properties" both link to plugin "org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper", so they are the same.

like image 113
Jade Avatar answered Jan 12 '23 01:01

Jade