-
Notifications
You must be signed in to change notification settings - Fork 225
/
build.gradle
35 lines (30 loc) · 876 Bytes
/
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
buildscript {
ext.versions = [
'minSdk' : 16,
'targetSdk' : 29,
'compileSdk' : 29,
'sourceCompatibility': JavaVersion.VERSION_1_7,
'targetCompatibility': JavaVersion.VERSION_1_7
]
ext.deps = [
// Library dependencies
recyclerview : 'androidx.recyclerview:recyclerview:1.1.0',
// Sample project dependencies
appcompat : 'androidx.appcompat:appcompat:1.2.0',
material : 'com.google.android.material:material:1.2.0',
smoothprogressbar: 'com.github.castorflex.smoothprogressbar:library-circular:1.1.0'
]
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
}
}
allprojects {
repositories {
jcenter()
google()
}
}