-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (44 loc) · 1.12 KB
/
build.gradle
File metadata and controls
51 lines (44 loc) · 1.12 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven { url "https://maven.fabric.io/public" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.google.gms:google-services:4.3.14'
}
}
plugins {
id("org.jetbrains.kotlin.android") version "1.7.20" apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext{
// Sdk and tools
minSdkVersion = 21
targetSdkVersion = 33
compileSdkVersion = 33
// App dependencies
androidx = "1.9.0"
appcompat = "1.5.1"
constraintLayout = "2.1.4"
material = "1.7.0"
junit = "4.13.2"
test_junit = "1.1.4"
espresso = "3.5.0"
firebase = "31.1.0"
glide = "4.14.2"
leakCanary = "2.10"
}