Update dependencies

This commit is contained in:
Jonas Lochmann 2023-07-24 02:00:00 +02:00
parent b1a3c10f96
commit a367aeec27
No known key found for this signature in database
GPG key ID: 8B8C9AEE10FA5B36
3 changed files with 35 additions and 43 deletions

View file

@ -14,32 +14,11 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.8.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
classpath 'com.squareup.wire:wire-gradle-plugin:4.4.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
plugins {
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
id 'org.jetbrains.kotlin.android' version "1.8.20" apply false
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false
id 'androidx.navigation.safeargs' version '2.6.0' apply false
id 'com.squareup.wire' version '4.4.3' apply false
}