Update dependencies

This commit is contained in:
Harsh Shandilya 2021-11-26 16:17:24 +05:30
parent 7cc7759205
commit 51f8962623
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
6 changed files with 15 additions and 15 deletions

View file

@ -12,30 +12,30 @@ buildscript {
}
}
dependencies {
classpath("com.android.tools:r8:3.2.16-dev")
classpath("com.android.tools:r8:3.2.28-dev")
classpath(kotlin("gradle-plugin", version = kotlinVersion))
classpath(kotlin("serialization", version = kotlinVersion))
classpath("com.android.tools.build:gradle:7.0.3")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.0.0")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.40.1")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.40.2")
}
}
plugins { id("com.diffplug.spotless") version "6.0.0" }
group = "dev.msfjarvis.claw"
version = "1.0"
apply(plugin = "com.diffplug.spotless")
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
kotlin {
target("**/*.kt")
targetExclude("**/build/**")
ktfmt("0.29").googleStyle()
ktfmt("0.30").googleStyle()
}
kotlinGradle {
target("**/*.gradle.kts")
ktfmt("0.29").googleStyle()
ktfmt("0.30").googleStyle()
}
}