Deps update, initial rename

This commit is contained in:
partisan 2025-04-29 23:54:43 +02:00
parent 2ff2448739
commit 199fd246f2
27 changed files with 121 additions and 88 deletions

View file

@ -1,18 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
plugins {
id 'com.github.ben-manes.versions' version '0.51.0'
id 'com.android.application' version '8.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
}
dependencyUpdates {
rejectVersionIf {
isNonStable(candidate.version)
}
outputFormatter = 'plain'
checkForGradleUpdate = true
}
def isNonStable(String version) {
return version =~ /(?i).*(alpha|beta|rc|cr|m|preview|b\d+|ea\d+).*/
}
task clean(type: Delete) {
delete rootProject.buildDir
}
}