buildscript { ext { androidPluginVersion = '7.2.2' kotlinLanguageVersion = '1.7.10' composeCompilerVersion = '1.3.1' composeLibraryVersion = '1.2.1' } } plugins { id 'com.android.application' version "$androidPluginVersion" apply false id 'org.jetbrains.kotlin.android' version "$kotlinLanguageVersion" apply false } task clean(type: Delete) { delete rootProject.buildDir }