-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
23 lines (22 loc) · 1.01 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google() // Google's Maven repository
mavenCentral() // Maven Central repository
maven { url 'https://devrepo.kakao.com/nexus/content/groups/public/' }
// Kakao's Maven repository
}
dependencies {
// Add the dependency for the Google services Gradle plugin
classpath 'com.google.gms:google-services:4.4.0'
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
}
}
plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.7.20' apply false
id 'androidx.navigation.safeargs' version '2.6.0' apply false
}