Sergey Vasilinets | 70a2e82 | 2017-11-03 12:20:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Louis Pullen-Freilich | 1dff678 | 2019-10-17 18:12:39 +0100 | [diff] [blame] | 17 | def isUiProject = System.getenv("DIST_SUBDIR") == "/ui" |
| 18 | |
Jake Wharton | 7495cc1 | 2018-01-05 11:05:13 -0500 | [diff] [blame] | 19 | def build_versions = [:] |
| 20 | |
Louis Pullen-Freilich | 08e53df | 2019-10-24 20:00:35 +0100 | [diff] [blame] | 21 | // NOTE: lint versions *must* be kept in sync with agp |
Louis Pullen-Freilich | 1dff678 | 2019-10-17 18:12:39 +0100 | [diff] [blame] | 22 | if (isUiProject) { |
Jim Sproch | 22be396 | 2019-11-25 16:10:04 -0800 | [diff] [blame] | 23 | build_versions.kotlin = "1.3.61" |
Dustin Lam | fe21f0f | 2020-03-25 13:23:11 -0700 | [diff] [blame] | 24 | build_versions.kotlin_coroutines = "1.3.0" |
Louis Pullen-Freilich | 659cf44 | 2020-02-14 23:46:20 +0000 | [diff] [blame] | 25 | build_versions.agp = '4.1.0-alpha03' |
| 26 | build_versions.lint = '27.1.0-alpha03' |
Aurimas Liutikas | aa460b0 | 2019-04-25 16:03:21 -0700 | [diff] [blame] | 27 | } else { |
Dustin Lam | 40b5ddc | 2020-03-25 12:19:01 -0700 | [diff] [blame^] | 28 | build_versions.kotlin = "1.3.71" |
Dustin Lam | fe21f0f | 2020-03-25 13:23:11 -0700 | [diff] [blame] | 29 | build_versions.kotlin_coroutines = "1.3.4" |
Dustin Lam | ed001e8 | 2020-03-19 18:00:29 -0700 | [diff] [blame] | 30 | build_versions.agp = '4.0.0-beta03' |
| 31 | build_versions.lint = '27.0.0-beta03' |
Aurimas Liutikas | aa460b0 | 2019-04-25 16:03:21 -0700 | [diff] [blame] | 32 | } |
Louis Pullen-Freilich | 1dff678 | 2019-10-17 18:12:39 +0100 | [diff] [blame] | 33 | |
Aurimas Liutikas | 5941b52 | 2020-03-04 15:21:52 -0800 | [diff] [blame] | 34 | def agpOverride = System.getenv("GRADLE_PLUGIN_VERSION") |
| 35 | if (agpOverride != null) { |
| 36 | logger.warn("Using custom version ${agpOverride} of AGP due to GRADLE_PLUGIN_VERSION being set.") |
| 37 | build_versions.agp = agpOverride |
Aurimas Liutikas | 4854124 | 2020-03-04 12:56:08 -0800 | [diff] [blame] | 38 | } |
| 39 | |
Tiem Song | 49f63fb | 2020-03-17 17:14:49 -0700 | [diff] [blame] | 40 | build_versions.dokka = '0.9.17-g009' |
Jeff Gaston | 149350d | 2019-03-08 20:32:29 -0500 | [diff] [blame] | 41 | |
Jake Wharton | 7495cc1 | 2018-01-05 11:05:13 -0500 | [diff] [blame] | 42 | rootProject.ext['build_versions'] = build_versions |
| 43 | |
Sergey Vasilinets | 70a2e82 | 2017-11-03 12:20:28 -0700 | [diff] [blame] | 44 | def build_libs = [:] |
| 45 | |
Louis Pullen-Freilich | 1dff678 | 2019-10-17 18:12:39 +0100 | [diff] [blame] | 46 | build_libs.agp = "com.android.tools.build:gradle:${build_versions.agp}" |
Jeff Gaston | db2929e | 2018-03-07 13:52:32 -0500 | [diff] [blame] | 47 | |
Oussama Ben Abdelbaki | f825eb5 | 2018-12-04 16:17:00 -0500 | [diff] [blame] | 48 | build_libs.lint = [ |
Louis Pullen-Freilich | 08e53df | 2019-10-24 20:00:35 +0100 | [diff] [blame] | 49 | core: "com.android.tools.lint:lint:${build_versions.lint}", |
| 50 | api: "com.android.tools.lint:lint-api:${build_versions.lint}", |
| 51 | tests: "com.android.tools.lint:lint-tests:${build_versions.lint}" |
Oussama Ben Abdelbaki | f825eb5 | 2018-12-04 16:17:00 -0500 | [diff] [blame] | 52 | ] |
| 53 | |
Jake Wharton | 7495cc1 | 2018-01-05 11:05:13 -0500 | [diff] [blame] | 54 | build_libs.kotlin = [ |
Louis Pullen-Freilich | 08e53df | 2019-10-24 20:00:35 +0100 | [diff] [blame] | 55 | stdlib: "org.jetbrains.kotlin:kotlin-stdlib:${build_versions.kotlin}", |
| 56 | gradle_plugin: "org.jetbrains.kotlin:kotlin-gradle-plugin:${build_versions.kotlin}" |
Jake Wharton | 7495cc1 | 2018-01-05 11:05:13 -0500 | [diff] [blame] | 57 | ] |
Sam Gilbert | 9d1cee2 | 2019-08-12 11:23:10 -0400 | [diff] [blame] | 58 | build_libs.dex_member_list = "com.jakewharton.dex:dex-member-list:4.1.1" |
Jeff Gaston | e8b45d4 | 2019-01-17 16:43:49 -0500 | [diff] [blame] | 59 | build_libs.dokka_gradle = [ |
Louis Pullen-Freilich | 08e53df | 2019-10-24 20:00:35 +0100 | [diff] [blame] | 60 | "org.jetbrains.dokka:dokka-android-gradle-plugin:${build_versions.dokka}", |
| 61 | "org.jetbrains.dokka:dokka-gradle-plugin:${build_versions.dokka}", |
Jeff Gaston | e8b45d4 | 2019-01-17 16:43:49 -0500 | [diff] [blame] | 62 | ] |
Louis Pullen-Freilich | 5c6b11e | 2020-02-06 18:19:09 +0000 | [diff] [blame] | 63 | build_libs.kotlinpoet = "com.squareup:kotlinpoet:1.4.0" |
Aurimas Liutikas | 419f993 | 2017-12-18 12:53:17 -0800 | [diff] [blame] | 64 | |
Sergey Vasilinets | 70a2e82 | 2017-11-03 12:20:28 -0700 | [diff] [blame] | 65 | rootProject.ext['build_libs'] = build_libs |