- Removal of kotlin synthetics

- Upgrade gradle to 8.0.0
 - Change dependency versioning
This commit is contained in:
2024-06-24 18:30:31 +01:00
parent b63caaa9cd
commit 2561b6ddf9
22 changed files with 270 additions and 166 deletions

View File

@@ -1,24 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.5.20'
}
repositories {
maven { url "https://www.jitpack.io" }
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1")
classpath ('com.android.tools.build:gradle:7.2.2')
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20")
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$NAVIGATION_VERSION"
classpath "com.android.tools.build:gradle:$GRADLE_PLUGIN_VERSION"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_GRADLE_PLUGIN"
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.4.0' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.android.application' version "$ANDROID_APPLICATION" apply false
id 'com.android.library' version "$ANDROID_LIBRARY" apply false
id 'com.google.gms.google-services' version "$GOOGLE_SERVICES" apply false
id 'org.jetbrains.kotlin.android' version "$KOTLIN_VERSION" apply false
id 'com.autonomousapps.dependency-analysis' version "$GRADLE_ANALYZE_VERSION"
}
task clean(type: Delete) {