nextpush-android/build.gradle

39 lines
1.1 KiB
Groovy
Raw Normal View History

2021-11-22 09:27:58 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2023-06-12 23:33:51 +02:00
ext.kotlin_version = '1.8.22'
2021-11-22 09:27:58 +01:00
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
content {
includeModule 'org.jlleitschuh.gradle', 'ktlint-gradle'
}
}
2021-11-22 09:27:58 +01:00
}
dependencies {
2023-05-30 22:31:34 +02:00
classpath 'com.android.tools.build:gradle:8.0.2'
2021-11-22 09:27:58 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2023-06-12 23:33:51 +02:00
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.4.0"
2021-11-22 09:27:58 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
2023-01-22 18:40:27 +01:00
maven {
url "https://www.jitpack.io"
content {
includeModule 'com.github.nextcloud', 'Android-SingleSignOn'
}
}
2021-11-22 09:27:58 +01:00
}
apply plugin: "org.jlleitschuh.gradle.ktlint"
2021-11-22 09:27:58 +01:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}