forked from myofficework000/Jetpack-Compose-All-in-one-Guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
22 lines (22 loc) · 885 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
ext {
compose_version = '1.4.3'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.45'
classpath 'com.google.gms:google-services:4.3.15'
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
classpath 'com.android.tools.build:gradle:8.1.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
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.8.10' apply false
id 'com.apollographql.apollo3' version '3.2.1' apply false
}