// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = "1.9.23" ext.room_version = "2.6.1" ext.workmanager_version = "2.9.0" ext.about_libraries_version="11.1.3" repositories { google() mavenCentral() maven { url "https://jitpack.io" } maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath 'com.android.tools.build:gradle:8.3.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libraries_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } plugins { // modern kotlin annotation support; replaces kapt: https://developer.android.com/build/migrate-to-ksp id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false } allprojects { repositories { google() mavenCentral() } } task clean(type: Delete) { delete rootProject.buildDir }