1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00
Frost-for-Facebook/build.gradle

24 lines
1.0 KiB
Groovy
Raw Normal View History

2023-06-18 06:02:19 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2017-05-30 00:05:26 +02:00
buildscript {
dependencies {
2023-06-20 10:06:09 +02:00
// https://mvnrepository.com/artifact/com.google.dagger/hilt-android-gradle-plugin
classpath('com.google.dagger:hilt-android-gradle-plugin:2.46.1')
2018-03-26 00:03:15 +02:00
}
2023-06-18 06:02:19 +02:00
}
2023-06-18 06:02:19 +02:00
plugins {
2023-06-20 10:06:09 +02:00
// https://mvnrepository.com/artifact/com.android.application/com.android.application.gradle.plugin?repo=google
2023-07-29 02:03:33 +02:00
id 'com.android.application' version '8.1.0-beta01' apply false
2023-06-18 06:02:19 +02:00
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
2023-06-18 06:53:56 +02:00
id 'com.diffplug.spotless' version '6.19.0' apply false
2023-06-18 11:21:23 +02:00
id 'com.google.protobuf' version '0.9.3' apply false
2023-06-19 00:27:30 +02:00
id 'app.cash.sqldelight' version "2.0.0-rc01" apply false
2017-05-30 00:05:26 +02:00
}
2023-06-18 06:02:19 +02:00
tasks.register('clean', Delete) {
delete rootProject.buildDir
}