-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathbuild.gradle
32 lines (29 loc) · 980 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.8.0' // Android Gradle plugin
// Add other classpaths like Google Services and Firebase Crashlytics if needed here.
classpath 'com.google.gms:google-services:4.4.0' // assuming you need it for your project
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
// assuming you need it for project
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
allprojects {
repositories {
mavenCentral()
google()
}
}
ext {
toolsVersion = properties.get('TOOLS_VERSION', '35.0.0')
compileApi = properties.get('COMPILE_API', 35)
targetApi = properties.get('TARGET_API', 28)
minApi = properties.get('MIN_API', 23)
}