// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = "1.7.10" repositories { gradlePluginPortal() google() } dependencies { classpath 'com.android.tools.build:gradle:7.2.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.billy.android:autoregister:1.4.1' classpath 'com.google.dagger:hilt-android-gradle-plugin:2.43.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { gradlePluginPortal() google() mavenCentral() maven { url 'https://repo1.maven.org/maven2/' } maven { url "https://jitpack.io" } flatDir { dirs 'libs' } } } task clean(type: Delete) { delete rootProject.buildDir }