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
|
|
|
|
|
*/
|
|
|
|
|
|
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 {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2017-02-23 17:50:36 +00:00
|
|
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2015-10-10 00:15:01 +00:00
|
|
|
|
maven {
|
|
|
|
|
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
|
}
|
2014-12-20 19:21:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-14 18:25:49 +00:00
|
|
|
|
|
|
|
|
|
apply plugin: 'android-reporting'
|