Skip to content
Snippets Groups Projects
build.gradle 529 B
Newer Older
Sebastian's avatar
Sebastian committed
buildscript {
Sebastian's avatar
Sebastian committed
    ext.kotlin_version = "1.5.21"
    ext.hilt_version = "2.37"
Sebastian's avatar
Sebastian committed
    repositories {
        google()
        mavenCentral()
Sebastian's avatar
Sebastian committed
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.2.2'
Sebastian's avatar
Sebastian committed
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
Sebastian's avatar
Sebastian committed
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
Sebastian's avatar
Sebastian committed
    }
}

task clean (type: Delete) {
    delete rootProject.buildDir
Sebastian's avatar
Sebastian committed
}