1
0
mirror of https://github.com/etesync/android synced 2024-11-16 04:49:06 +00:00
etesync-android/build.gradle

43 lines
1.0 KiB
Groovy
Raw Normal View History

/*
* 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
*/
ext {
2019-05-06 11:47:00 +00:00
kotlin_version = '1.3.30'
2019-05-29 11:49:55 +00:00
gradle_version = '3.4.1'
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-05-06 11:47:00 +00:00
ext.kotlin_version = '1.3.30'
2019-05-29 11:49:55 +00:00
ext.gradle_version = '3.4.1'
2018-01-19 20:37:04 +00:00
repositories {
jcenter()
2018-01-19 14:21:03 +00:00
google()
}
dependencies {
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"
}
}
allprojects {
repositories {
jcenter()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
2018-01-19 14:21:03 +00:00
google()
}
}
2017-04-05 17:39:54 +00:00
apply plugin: 'android-reporting'