forked from fossasia/pslab-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
79 lines (68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "io.realm:realm-gradle-plugin:10.10.1"
classpath "gradle.plugin.com.github.b3er.local.properties:local-properties-plugin:1.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
// Define versions in a single place
ext {
// Sdk and tools
minSdkVersion = 23
targetSdkVersion = 31
compileSdkVersion = 31
// App dependencies
androidAboutPageVersion = '1.3.1'
atvVersion = '1.2.9'
butterKnifeVersion = '10.2.3'
carouselPickerVersion = '1.2'
circleImageViewVersion = '3.1.0'
commonLangVersion = '3.12.0'
commonMathVersion = '3.6.1'
constraintLayoutVersion = '2.0.4'
crollerVersion = '1.0.7'
knobLibraryVersion = '1.9.0'
markDownViewVersion = '0.19.0'
materialDialogsVersion = '0.9.6.0'
mpAndroidChartVersion = 'v3.1.0'
navTabStripVersion = '1.0.4'
okHttpVersion = '4.9.3'
picassoVersion = '2.71828'
realmAdapter = '4.0.0'
searchDialogVersion = '1.2.4'
seekBarLibraryVersion = '2.1.2'
speedView = '1.6.0'
supportLibraryVersion = '28.0.0'
// Map related versions
osmVersion = '6.1.11'
mapsforgeVersion = '6.1.11'
geoPackageVersion = '6.1.11'
googleMapsVersion = '18.0.2'
// MultiDex
multiDexVersion = '1.0.3'
// Test dependencies
testRunnerRulesVersion = '1.0.2'
junitVersion = '4.13.2'
espressoVersion = '3.0.2'
mockitoVersion = '2.8.9'
}