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

27 lines
601 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.1'
// https://github.com/bugsnag/bugsnag-android-gradle-plugin
3 years ago
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:5.7.6'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}