-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
28 lines (26 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
//Might not need this or keep it empty
buildscript {
repositories {
google()
mavenCentral() // add this line
}
allprojects {
repositories {
google()
mavenCentral() // add this line
}
}
dependencies {
classpath "com.android.tools.build:gradle:8.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
classpath "io.realm:realm-gradle-plugin:10.15.1" // add this line
}
}
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
id 'io.realm.kotlin' version '1.8.0' apply false
id "org.jetbrains.kotlin.kapt" version "1.6.20" apply false
//id 'com.google.dagger.hilt.android' version '2.44' apply false
}