-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (22 loc) · 867 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
23
24
25
26
27
28
29
30
31
32
33
34
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.4.1'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.51.1' // Need this if you want to use dagger.hilt plugin in :app module of build.gradle
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7"
}
}
plugins {
id 'com.android.application' version '8.4.1' apply false
id 'com.android.library' version '8.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'com.google.dagger.hilt.android' version '2.46.1' apply false
}
/*
google() - for gradle 4.0+
maven {url 'https://maven.google.com' } - for gradle < 4.0
*/