mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 20:31:16 +00:00
4414dcc8a4
* Bump gradle from 3.1.3 to 3.4.2 Bumps gradle from 3.1.3 to 3.4.2. Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Fix mistakes resulting in build errors after gradle upgrade
30 lines
665 B
Groovy
30 lines
665 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.4.2'
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.22.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.github.triplet.play' version '2.2.1'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|