aboutsummaryrefslogtreecommitdiff
path: root/gradle/root_all_projects_ext.gradle
blob: 2867b3d771d2e9b3334146b65bd3210c0660c8b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
allprojects {
    project.ext {
        androidBuildTools = '30.0.2'
        supportLibVersion = '25.4.0'
        robolectricVersion = '4.3.1'

        sdkTargetVersion = 28
        sdkCompileVersion = 28
        sdkMinimumVersion = 9

        isCircleCi = 'true' == System.getenv("CIRCLECI")
        isGithubAction = 'true' == System.getenv("GITHUB_ACTIONS")
        isCi = isCircleCi || isGithubAction || 'true' == System.getenv("CI")
    }
}