2015-03-08 22:30:03 +00:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 – 2015 Ricki Hirner (bitfire web engineering).
|
|
|
|
|
* All rights reserved. This program and the accompanying materials
|
|
|
|
|
* are made available under the terms of the GNU Public License v3.0
|
|
|
|
|
* which accompanies this distribution, and is available at
|
|
|
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-06 14:58:49 +00:00
|
|
|
|
ext {
|
2020-10-01 07:03:04 +00:00
|
|
|
|
kotlin_version = '1.4.10'
|
2020-08-19 14:36:16 +00:00
|
|
|
|
gradle_version = '4.0.0'
|
2019-01-06 14:58:49 +00:00
|
|
|
|
compileSdkVersion = 28
|
2020-08-19 14:36:16 +00:00
|
|
|
|
buildToolsVersion = '29.0.3'
|
2019-01-06 14:58:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-20 19:21:46 +00:00
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
buildscript {
|
2020-10-01 07:03:04 +00:00
|
|
|
|
ext.kotlin_version = '1.4.10'
|
2020-08-19 14:36:16 +00:00
|
|
|
|
ext.gradle_version = '4.0.0'
|
2018-01-19 20:37:04 +00:00
|
|
|
|
|
2014-12-20 19:21:46 +00:00
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2018-01-19 14:21:03 +00:00
|
|
|
|
google()
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2019-01-06 14:58:49 +00:00
|
|
|
|
classpath "com.android.tools.build:gradle:$gradle_version"
|
2018-01-19 20:37:04 +00:00
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2019-10-08 12:27:53 +00:00
|
|
|
|
mavenCentral()
|
|
|
|
|
maven() {
|
2019-11-04 11:34:22 +00:00
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
2015-10-10 00:15:01 +00:00
|
|
|
|
}
|
2018-01-19 14:21:03 +00:00
|
|
|
|
google()
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-14 18:25:49 +00:00
|
|
|
|
|
2019-01-06 14:58:49 +00:00
|
|
|
|
|
2017-04-05 17:39:54 +00:00
|
|
|
|
apply plugin: 'android-reporting'
|