blob: 99ae156f92493a45a8ffbea153941edbb564cc80 [file] [log] [blame]
Yigit Boyar88fdeff2017-03-20 08:34:33 -07001/*
2 * Copyright (C) 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
Kirill Grouchnikov43089c12016-12-14 12:18:52 -050017// Top-level build file where you can add configuration options common to all sub-projects/modules.
18
19buildscript {
20 repositories {
21 jcenter()
22 }
23 dependencies {
Yigit Boyar88fdeff2017-03-20 08:34:33 -070024 classpath 'com.android.tools.build:gradle:2.3.0'
Kirill Grouchnikov43089c12016-12-14 12:18:52 -050025
26 // NOTE: Do not place your application dependencies here; they belong
27 // in the individual module build.gradle files
28 }
29}
30
Kirill Grouchnikovfc6de8d2016-12-14 13:11:39 -050031ext.flatfootVersion = "1.0-SNAPSHOT"
Yigit Boyar88fdeff2017-03-20 08:34:33 -070032ext.supportLibVersion = "25.2.0"
33ext.daggerVersion = "2.7"
Kirill Grouchnikovfc6de8d2016-12-14 13:11:39 -050034
Yigit Boyar88fdeff2017-03-20 08:34:33 -070035allprojects { p ->
Kirill Grouchnikov43089c12016-12-14 12:18:52 -050036 repositories {
37 jcenter()
Yigit Boyar88fdeff2017-03-20 08:34:33 -070038 maven { url '/Volumes/ssd/src/ff-repo/m2repository' }
Kirill Grouchnikov43089c12016-12-14 12:18:52 -050039 }
40}
41
42task clean(type: Delete) {
43 delete rootProject.buildDir
44}