forked from capAble-SDG/capAble-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
29 lines (23 loc) · 922 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google() // Make sure Google's Maven repository is included
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.0") // Specify the correct Gradle Plugin version
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:VERSION") // Specify the correct Kotlin version
classpath("com.google.gms:google-services:4.4.0") // Add Google services plugin (for Google Analytics)
}
}
allprojects {
repositories {
google() // Make sure Google's Maven repository is included
mavenCentral()
}
}
plugins {
id("com.android.application") version "8.1.4" 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
}