This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
/
build.gradle
63 lines (57 loc) · 2.06 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* 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
// https://github.com/mozilla-mobile/android-components/blob/v19.0.1/buildSrc/src/main/java/Dependencies.kt,
// 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 {
url "https://plugins.gradle.org/m2/"
}
}
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 {
url "https://snapshots.maven.mozilla.org/maven2"
}
maven {
url "https://maven.mozilla.org/maven2"
}
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}