Skip to content
Snippets Groups Projects
build.gradle 736 B
Newer Older
Sebastian's avatar
Sebastian committed
buildscript {
    ext.kotlin_version = '1.5.21'
    ext.hilt_version = '2.38.1'
Torsten Grote's avatar
Torsten Grote committed
    ext.tor_version = '0.3.5.15'
    ext.obfs4_version = '0.0.12-dev-40245c4a'
    ext.junit_version = '5.7.2'
    ext.mockk_version = '1.10.4'
Sebastian's avatar
Sebastian committed
    repositories {
        google()
        mavenCentral()
Sebastian's avatar
Sebastian committed
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.0.0'
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()
Torsten Grote's avatar
Torsten Grote committed
        jcenter() // for dependencies that haven't moved, yet
        mavenCentral()
task clean(type: Delete) {
Sebastian's avatar
Sebastian committed
    delete rootProject.buildDir
Sebastian's avatar
Sebastian committed
}