btelman96/letsrobot-android

View on GitHub
build.gradle

Summary

Maintainability
Test Coverage
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.3.31'
    ext.kotlin_version = '1.3.10'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

def BITRISE_BUILD_NUMBER = Integer.parseInt(System.getenv("BITRISE_BUILD_NUMBER") ?: "1")
def getGitHash = { ->
    def stdout = new ByteArrayOutputStream()
    exec {
        commandLine 'git', 'rev-parse', '--short', 'HEAD'
        standardOutput = stdout
    }
    return stdout.toString().trim()
}

ext{
    globalBuildToolsVersion = "28.0.3"
    buildNumber = BITRISE_BUILD_NUMBER
    gitHash = getGitHash()
    versionSemantic = "0.8.0"
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}