mirror of
https://github.com/etesync/android
synced 2024-11-26 01:48:34 +00:00
03c15a6924
* task list synchronization: don't set VISIBLE=1 and SYNC_ENABLED=1 at every sync, but only at creation * task list synchronization: sync only task lists which are SYNC_ENABLED * honor "manage calendar colors" account setting for task list colors, too * add run-tests-connected.sh, to be used as pre-commit hook * ical4android/vcard4android tests * fetch translations from Transifex * version bump to 1.0.7
28 lines
751 B
Groovy
28 lines
751 B
Groovy
/*
|
||
* 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 {
|
||
repositories {
|
||
jcenter()
|
||
}
|
||
dependencies {
|
||
classpath 'com.android.tools.build:gradle:2.0.0+'
|
||
}
|
||
}
|
||
|
||
allprojects {
|
||
repositories {
|
||
jcenter()
|
||
maven {
|
||
url 'http://oss.sonatype.org/content/repositories/snapshots'
|
||
}
|
||
}
|
||
}
|
||
|
||
apply plugin: 'android-reporting' |