-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
20 lines (20 loc) · 837 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
buildscript {
ext.kotlin_version = '1.9.20'
ext.android_gradle_version = '8.1'
repositories {
mavenCentral()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:8.1.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20"
classpath 'com.google.gms:google-services:4.4.0'
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.1.4' apply false
id 'com.android.library' version '8.1.4' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
id 'com.google.gms.google-services' version '4.4.0' apply false
}