mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-02-17 01:37:00 -06:00
Bumps `hilt_version` from 2.44.2 to 2.45. Updates `com.google.dagger:hilt-android-gradle-plugin` from 2.44.2 to 2.45 - [Release notes](https://github.com/google/dagger/releases) - [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/dagger/compare/dagger-2.44.2...dagger-2.45) Updates `com.google.dagger:hilt-android` from 2.44.2 to 2.45 - [Release notes](https://github.com/google/dagger/releases) - [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/dagger/compare/dagger-2.44.2...dagger-2.45) Updates `com.google.dagger:hilt-android-compiler` from 2.44.2 to 2.45 - [Release notes](https://github.com/google/dagger/releases) - [Changelog](https://github.com/google/dagger/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/dagger/compare/dagger-2.44.2...dagger-2.45) --- updated-dependencies: - dependency-name: com.google.dagger:hilt-android-gradle-plugin dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.google.dagger:hilt-android dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.google.dagger:hilt-android-compiler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68 lines
1.7 KiB
Groovy
68 lines
1.7 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
|
|
ext{
|
|
kotlin_version = "1.6.21"
|
|
lifecycle_version = "2.5.1"
|
|
room_version = "2.5.0"
|
|
navigation_version = '2.5.3'
|
|
ext.hilt_version = '2.45'
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.2.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.google.gms:google-services:4.3.15'
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
|
|
|
|
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
|
|
|
|
classpath("com.spotify.ruler:ruler-gradle-plugin:1.4.0")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
plugins {
|
|
id 'com.diffplug.spotless' version '6.13.0'
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
/*task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}*/
|
|
|
|
|
|
|
|
subprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
apply plugin: 'com.diffplug.spotless'
|
|
spotless {
|
|
kotlin {
|
|
target '**/*.kt'
|
|
targetExclude("$buildDir/**/*.kt")
|
|
targetExclude('bin/**/*.kt')
|
|
|
|
java.util.HashMap<String, String> map = new HashMap<>();
|
|
map.put("disabled_rules","no-wildcard-imports")
|
|
ktlint("0.40.0").userData(map)
|
|
// licenseHeaderFile rootProject.file('spotless/copyright.kt')
|
|
}
|
|
}
|
|
} |