X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyCell.git;a=blobdiff_plain;f=build.gradle;h=492462b4b44a7d421fc5a1658ee14157dbda1e12;hp=9f804b52c4b5f03af435296e66456140840f1b44;hb=HEAD;hpb=a02f5b84c4f81765cbaec1ac2462a5f38c5fe81f diff --git a/build.gradle b/build.gradle index 9f804b5..428e4af 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ /* - * Copyright © 2021 Soren Stoutner . + * Copyright 2021-2023 Soren Stoutner . * * This file is part of Privacy Cell . * @@ -23,15 +23,16 @@ buildscript { google() mavenCentral() } + dependencies { - classpath "com.android.tools.build:gradle:7.0.0" - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21" + classpath 'com.android.tools.build:gradle:8.1.2' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } -task clean(type: Delete) { +tasks.register('clean', Delete) { delete rootProject.buildDir -} \ No newline at end of file +}