-
Notifications
You must be signed in to change notification settings - Fork 42
/
dependencies.gradle
33 lines (28 loc) · 1.06 KB
/
dependencies.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
ext {
// Android Version
minSdkVersion = 14
compileSdkVersion = 28
targetSdkVersion = 28
gradleVersion = '3.5.0-beta04'
kotlinVersion = '1.3.40'
// Kotlin
kotlinStdlib = 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:' + kotlinVersion
animatedVectorDrawable = "androidx.vectordrawable:vectordrawable-animated:1.0.0"
appcompatV7 = "androidx.appcompat:appcompat:1.0.0"
cardView = "androidx.cardview:cardview:1.0.0"
design = "com.google.android.material:material:1.0.0"
exifinterface = "androidx.exifinterface:exifinterface:1.0.0"
recyclerviewV7 = "androidx.recyclerview:recyclerview:1.0.0"
supportAnnotations = "androidx.annotation:annotation:1.1.0"
constraintLayout = "androidx.constraintlayout:constraintlayout:1.1.2"
picasso = 'com.squareup.picasso:picasso:2.71828'
supportLibs = [animatedVectorDrawable,
appcompatV7,
cardView,
design,
exifinterface,
recyclerviewV7,
supportAnnotations,
constraintLayout]
junit = 'junit:junit:4.12'
}