e-ntfy-android/build.gradle

29 lines
807 B
Groovy
Raw Normal View History

buildscript {
2023-05-20 02:19:19 +02:00
ext.kotlin_version = '1.8.20'
repositories {
google()
2022-11-19 02:08:24 +01:00
mavenCentral()
}
dependencies {
2023-05-20 02:29:16 +02:00
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2023-05-20 02:19:19 +02:00
classpath 'com.google.gms:google-services:4.3.15' // This is removed in the "fdroid" flavor
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2022-11-19 02:08:24 +01:00
mavenCentral()
maven { url 'https://gitlab.e.foundation/api/v4/groups/9/-/packages/maven'}
2022-01-10 21:36:50 +01:00
maven { url "https://jitpack.io" } // For StfalconImageViewer
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}