forked from DreierF/MyTargets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (51 loc) · 1.76 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (C) 2018 Florian Dreier
*
* This file is part of MyTargets.
*
* MyTargets is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* MyTargets is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
buildscript {
ext.androidPluginVersion = '3.1.2'
ext.kotlinVersion = '1.2.51'
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.github.triplet.gradle:play-publisher:1.2.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.3'
classpath 'com.google.gms:google-services:4.0.2'
classpath 'com.google.firebase:firebase-plugins:1.1.5'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'io.fabric.tools:gradle:1.25.4'
}
}
plugins {
id 'com.mendhak.gradlecrowdin' version '0.1.0'
id 'com.github.ben-manes.versions' version '0.19.0'
}
apply from: 'dependencies.gradle'
allprojects {
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
maven { url 'https://clojars.org/repo/' }
maven { url 'https://maven.google.com/' }
}
}
apply from: 'tools/script-git-version.gradle'
apply from: 'tools/script-crowdin.gradle'
apply from: 'tools/script-dependency-updates.gradle'
apply from: 'tools/script-keystore-fallback.gradle'