1
0
mirror of https://github.com/dzeiocom/OpenHealth.git synced 2025-04-25 04:12:15 +00:00
OpenHealth/build.gradle
dependabot[bot] 59076f1191
Bump org.jetbrains.kotlin.android from 1.6.0 to 1.6.10 (#6)
Bumps org.jetbrains.kotlin.android from 1.6.0 to 1.6.10.

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-12-21 12:04:46 +01:00

21 lines
624 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
// Safe Navigation
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
}
}
plugins {
id 'com.android.application' version '7.1.0-beta05' apply false
id 'com.android.library' version '7.1.0-beta05' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
delete project.buildDir
}