forked from DreierF/MyTargets
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
56 lines (50 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
/*
* 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.kotlinVersion = '1.8.20'
repositories {
jcenter()
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.0'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'com.google.firebase:firebase-plugins:2.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.1")
classpath "com.github.ben-manes:gradle-versions-plugin:0.46.0"
}
}
plugins {
id 'com.github.ben-manes.versions' version '0.46.0'
}
apply from: 'dependencies.gradle'
allprojects {
repositories {
jcenter()
mavenCentral()
google()
maven { url 'https://jitpack.io' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://clojars.org/repo/' }
}
}
apply from: 'tools/script-git-version.gradle'
apply from: 'tools/script-dependency-updates.gradle'
apply from: 'tools/script-keystore-fallback.gradle'