nextpush-android/build.gradle

32 lines
831 B
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 {
ext.kotlin_version = '1.8.0'
2021-11-22 09:27:58 +01:00
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.0'
2021-11-22 09:27:58 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// 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
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}