// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { mavenCentral() maven { url 'https://maven.google.com/' name 'Google' } maven { url "https://plugins.gradle.org/m2/" } google() } dependencies { classpath 'com.android.tools.build:gradle:9.3.0' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10' classpath 'org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.2.10' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } plugins { id("com.google.devtools.ksp") version '2.3.10' apply false id("com.google.dagger.hilt.android") version "2.60.1" apply false } allprojects { repositories { mavenCentral() google() } } tasks.register('clean', Delete) { delete rootProject.layout.buildDirectory }