buildscript { ext { androidPluginVersion = '7.4.2' kotlinLanguageVersion = '1.8.10' composeCompilerVersion = '1.4.3' composeLibraryVersion = '1.4.1' } } plugins { id 'com.android.application' version "$androidPluginVersion" apply false id 'org.jetbrains.kotlin.android' version "$kotlinLanguageVersion" apply false id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlinLanguageVersion" apply false id 'org.sirekanyan.version-checker' version "1.0.1" apply false } task clean(type: Delete) { delete rootProject.buildDir }