blob: 9570cc6f02e301f7e9a97b1ade016d650e08cb1c [file] [log] [blame]
Don Turnere3e55e62018-03-27 15:50:03 +01001/*
gerry3b5b60a2018-06-06 23:30:34 -07002 * Copyright 2018 The Android Open Source Project
Don Turnere3e55e62018-03-27 15:50:03 +01003 *
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 */
17
18// Top-level build file where you can add configuration options common to all sub-projects/modules.
19
20
21
22buildscript {
Paul McLean073ad282020-01-13 10:32:50 -070023 ext.kotlin_version = '1.3.50'
24
Don Turnere3e55e62018-03-27 15:50:03 +010025 repositories {
Don Turnere3e55e62018-03-27 15:50:03 +010026 google()
gfanc351bd02018-06-11 11:25:36 -070027 jcenter()
Don Turnere3e55e62018-03-27 15:50:03 +010028 }
29 dependencies {
Paul McLean836ca9b2020-08-06 15:30:39 -060030 classpath 'com.android.tools.build:gradle:4.0.1'
Don Turnere3e55e62018-03-27 15:50:03 +010031 // NOTE: Do not place your application dependencies here; they belong
32 // in the individual module build.gradle files
Paul McLean073ad282020-01-13 10:32:50 -070033 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Don Turnere3e55e62018-03-27 15:50:03 +010034 }
35}
36
37allprojects {
38 repositories {
Don Turnere3e55e62018-03-27 15:50:03 +010039 google()
gfanc351bd02018-06-11 11:25:36 -070040 jcenter()
Don Turnere3e55e62018-03-27 15:50:03 +010041 }
42}