Revision control

Copy as Markdown

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.android_support_version = '28.0.0'
ext.kotlin_version = '1.3.0'
ext.android_components_version = '27.0.4'
// Determined from
// where the version in the URL is the tag corresponding to `android_components_version`.
ext.mozilla_appservices_version = '0.46.0'
ext.lifecycle_version = '1.1.1'
ext.navigation_version = '1.0.0'
ext.rxbinding_version = '2.2.0'
ext.coroutine_version = '1.0.1'
ext.androidxTest_version = '1.1.0'
ext.picasso_version = '2.71828'
ext.recyclerview_version = '1.2.0-alpha03'
ext.sentry_version = '1.7.16'
ext.constraintlayout_version = '1.1.3'
ext.preferences_version = '1.1.1'
repositories {
google()
jcenter()
maven {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
//noinspection DifferentKotlinGradleVersion
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.sentry:sentry-android-gradle-plugin:$sentry_version"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
// Required until 0.51.0 releases.
maven {
}
maven {
}
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}