-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
30 lines (30 loc) · 899 Bytes
/
build.gradle.kts
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
/*buildscript {
repositories{
google()
mavenCentral()
}
dependencies {
classpath("com.google.gms:google-services:4.4.0")
}
}
allprojects{
repositories{
google()
mavenCentral()
}
}*/
buildscript {
dependencies {
classpath("com.google.gms:google-services:4.4.0")
classpath("com.android.tools.build:gradle:7.3.0")
classpath("com.google.firebase:perf-plugin:1.4.2")
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.10" apply false
id("com.google.gms.google-services") version "4.4.0" apply false
id("com.google.firebase.firebase-perf") version "1.4.2" apply false
id("com.android.test") version "8.1.2" apply false
}