This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
embedded-webview/android/build.gradle
renovate 55eedfe7e8
Some checks failed
valuya/embedded-webview/pipeline/head There was a failure building this commit
valuya/embedded-webview/pipeline/pr-master There was a failure building this commit
Update kotlin_version to v2
2024-11-22 01:22:40 +00:00

30 lines
576 B
Groovy

buildscript {
ext.kotlin_version = '2.0.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}