You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FairEmail/build.gradle

30 lines
832 B

buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
4 years ago
// https://developer.android.com/studio/releases/gradle-plugin
3 years ago
classpath 'com.android.tools.build:gradle:4.2.2'
// https://github.com/bugsnag/bugsnag-android-gradle-plugin
3 years ago
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:5.7.6'
// https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:1.5.20"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}