-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.gradle
executable file
·54 lines (47 loc) · 1.25 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}
allprojects {
repositories {
google()
mavenCentral()
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
libVersion = '2.5.3'
okHttpVersion = '4.10.0'
retrofitVersion = '2.9.0'
moshiVersion = '1.8.0'
workManagerVersion = '2.7.1'
compileSdkVersion = 31
minSdkVersion = 21
buildToolsVersion = '30.0.2'
awarenessVersion = '19.0.1'
picassoVersion = '2.71828'
robolectricVersion = '4.7.3'
junitVersion = '4.13.2'
androidXTestVersion = '1.4.0'
androidXJunitVersion = '1.1.3'
okhttpMockServerVersion = '4.4.0'
}
apply from: 'publish-root.gradle'