-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.15 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [
'compileSdk': 28,
'minSdk' : 16,
'targetSdk' : 28,
]
ext.deps = [
appCompat : 'androidx.appcompat:appcompat:1.0.0',
recyclerView : 'androidx.recyclerview:recyclerview:1.0.0',
expandablerecyclerview: 'com.github.AliAsadi.expandable-recycler-view:expandablerecyclerview:1.8',
gson : "com.google.code.gson:gson:2.8.5",
junit : 'androidx.test.ext:junit:1.1.1',
mockito : 'org.mockito:mockito-core:2.23.0',
runner : 'androidx.test:runner:1.2.0'
]
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}