-
Notifications
You must be signed in to change notification settings - Fork 530
/
build.gradle
35 lines (31 loc) · 1.14 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
// don't add anything here until you read to the bottom of this bracket
google()
mavenCentral()
maven { url 'https://jitpack.io' }
// WARNING WARNING WARNING
// you are about to add here a repository which provides some library for the Android app
// don't do that. add that repository to app/build.gradle
}
dependencies {
classpath libs.gradle
classpath libs.realm.gradle.plugin
// WARNING WARNING WARNING
// you are about to add here a dependency to be used in the Android app
// don't do that. add that dependency to app/build.gradle
classpath libs.google.services
classpath libs.kotlin.gradle.plugin
classpath libs.firebase.crashlytics.gradle
classpath libs.hilt.android.gradle.plugin
}
}
plugins {
alias(libs.plugins.androidApplication) apply false
}
configurations.configureEach {
resolutionStrategy {
force 'com.google.firebase:firebase-analytics:16.5.0'
}
}