1*d353a188SXin Li/* 2*d353a188SXin Li * Copyright (C) 2015 Google Inc. All Rights Reserved. 3*d353a188SXin Li * 4*d353a188SXin Li * Licensed under the Apache License, Version 2.0 (the "License"); 5*d353a188SXin Li * you may not use this file except in compliance with the License. 6*d353a188SXin Li * You may obtain a copy of the License at 7*d353a188SXin Li * 8*d353a188SXin Li * http://www.apache.org/licenses/LICENSE-2.0 9*d353a188SXin Li * 10*d353a188SXin Li * Unless required by applicable law or agreed to in writing, software 11*d353a188SXin Li * distributed under the License is distributed on an "AS IS" BASIS, 12*d353a188SXin Li * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*d353a188SXin Li * See the License for the specific language governing permissions and 14*d353a188SXin Li * limitations under the License. 15*d353a188SXin Li */ 16*d353a188SXin Li 17*d353a188SXin Li// Top-level build file where you can add configuration options common to all sub-projects/modules. 18*d353a188SXin Li 19*d353a188SXin Libuildscript { 20*d353a188SXin Li repositories { 21*d353a188SXin Li jcenter() 22*d353a188SXin Li google() 23*d353a188SXin Li } 24*d353a188SXin Li dependencies { 25*d353a188SXin Li classpath 'com.android.tools.build:gradle:3.0.1' 26*d353a188SXin Li 27*d353a188SXin Li // NOTE: Do not place your application dependencies here; they belong 28*d353a188SXin Li // in the individual module build.gradle files 29*d353a188SXin Li } 30*d353a188SXin Li} 31*d353a188SXin Li 32*d353a188SXin Liallprojects { 33*d353a188SXin Li repositories { 34*d353a188SXin Li jcenter() 35*d353a188SXin Li google() 36*d353a188SXin Li } 37*d353a188SXin Li} 38*d353a188SXin Li 39*d353a188SXin Litask clean(type: Delete) { 40*d353a188SXin Li delete rootProject.buildDir 41*d353a188SXin Li} 42*d353a188SXin Li 43*d353a188SXin Li 44*d353a188SXin Li 45*d353a188SXin Li 46*d353a188SXin Li 47*d353a188SXin Li 48*d353a188SXin Li 49*d353a188SXin Li 50*d353a188SXin Li 51*d353a188SXin Li 52*d353a188SXin Li 53