-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
65 lines (52 loc) · 1.61 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
buildscript {
ext.kotlin_version = '1.7.21'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
group = 'io.noties'
version = '5.0.0'
tasks.withType(Javadoc) {
enabled(false)
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
wrapper {
gradleVersion '7.3.3'
distributionType 'all'
}
ext {
config = [
'min-sdk' : 21,
'target-sdk' : 33,
'build-tools': '33.0.2'
]
deps = [
'x-annotations' : 'androidx.annotation:annotation:1.5.0',
// https://developer.android.com/jetpack/androidx/releases/recyclerview
'x-recyclerview': 'androidx.recyclerview:recyclerview:1.2.1',
'x-viewpager' : 'androidx.viewpager:viewpager:1.0.0',
'x-viewpager2' : 'androidx.viewpager2:viewpager2:1.0.0',
// https://github.com/google/flexbox-layout
'flexbox': 'com.google.android.flexbox:flexbox:3.0.0',
'junit4' : 'junit:junit:4.13.2',
// https://github.com/mockito/mockito
'mockito' : 'org.mockito:mockito-core:4.8.0',
// https://github.com/robolectric/robolectric
'robolectric' : 'org.robolectric:robolectric:4.9',
// https://github.com/mockito/mockito-kotlin
'mockito-kotlin': 'org.mockito.kotlin:mockito-kotlin:4.0.0'
]
}