2017-04-04 15:18:46 -07:00
|
|
|
/* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
2014-09-10 10:54:21 -04:00
|
|
|
*/
|
|
|
|
|
2017-04-04 15:18:46 -07:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2014-08-18 09:40:33 -04:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2017-08-29 17:27:02 +02:00
|
|
|
maven {
|
|
|
|
url "https://maven.google.com"
|
|
|
|
}
|
2018-06-11 23:12:58 +02:00
|
|
|
jcenter()
|
2014-08-18 09:40:33 -04:00
|
|
|
}
|
2015-12-07 15:03:02 -08:00
|
|
|
dependencies {
|
2017-04-04 15:18:46 -07:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2018-02-15 17:42:10 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
2014-08-18 09:40:33 -04:00
|
|
|
}
|
2016-06-06 11:21:30 -07:00
|
|
|
}
|
2014-08-18 09:40:33 -04:00
|
|
|
|
2016-06-06 11:21:30 -07:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-08-29 17:27:02 +02:00
|
|
|
maven {
|
|
|
|
url "https://maven.google.com"
|
|
|
|
}
|
2018-06-11 23:12:58 +02:00
|
|
|
jcenter()
|
2016-06-06 11:21:30 -07:00
|
|
|
}
|
2017-10-18 11:04:44 -07:00
|
|
|
//This replaces project.properties w.r.t. build settings
|
2017-04-04 15:18:46 -07:00
|
|
|
project.ext {
|
2018-01-04 15:35:04 -08:00
|
|
|
defaultBuildToolsVersion="27.0.1" //String
|
2017-04-04 15:18:46 -07:00
|
|
|
defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
|
2018-01-02 14:38:03 -08:00
|
|
|
defaultTargetSdkVersion=27 //Integer - We ALWAYS target the latest by default
|
|
|
|
defaultCompileSdkVersion=27 //Integer - We ALWAYS compile with the latest by default
|
2014-09-17 15:29:57 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 15:18:46 -07:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2014-09-23 21:03:17 -04:00
|
|
|
}
|