0
0
mirror of https://github.com/etesync/android.git synced 2024-09-20 13:08:51 +02:00
etesync-android/build.gradle

34 lines
898 B
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
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-01-19 21:37:04 +01:00
ext.kotlin_version = '1.2.20'
repositories {
jcenter()
2018-01-19 15:21:03 +01:00
google()
}
dependencies {
2018-01-19 21:37:04 +01:00
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots'
}
2018-01-19 15:21:03 +01:00
google()
}
}
2017-04-05 19:39:54 +02:00
apply plugin: 'android-reporting'