forked from AllanWang/Frost-for-Facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
23 lines (21 loc) · 1.02 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 {
dependencies {
// https://mvnrepository.com/artifact/com.google.dagger/hilt-android-gradle-plugin
classpath('com.google.dagger:hilt-android-gradle-plugin:2.46.1')
}
}
plugins {
// https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin?repo=google
id 'com.android.application' version '8.1.0-beta04' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
// https://mvnrepository.com/artifact/com.google.devtools.ksp/com.google.devtools.ksp.gradle.plugin
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false
id 'com.diffplug.spotless' version '6.19.0' apply false
id 'com.google.protobuf' version '0.9.3' apply false
id 'app.cash.sqldelight' version "2.0.0-rc01" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}