-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdependencies.gradle
More file actions
31 lines (26 loc) · 887 Bytes
/
dependencies.gradle
File metadata and controls
31 lines (26 loc) · 887 Bytes
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
allprojects {
repositories {
google()
jcenter()
}
}
ext {
// APP VERSION
androidVersionCode = 2
androidVersionName = '1.1.0'
// ANDROID VERSION
androidCompileSdkVersion = 28
androidMinSdkVersion = 14
androidTargetSdkVersion = 28
// KOTLIN
kotlinStdlibGroupId = "org.jetbrains.kotlin"
kotlinStdlibArtifactId = "kotlin-stdlib"
kotlinStdlibVersion = ext.kotlin_version
kotlinStdlib = "$kotlinStdlibGroupId:$kotlinStdlibArtifactId:$kotlinStdlibVersion"
// ANDROID LIB
androidAppCompatXVersion = '1.0.2'
androidXAppCompat = "androidx.appcompat:appcompat:$androidAppCompatXVersion"
// UI
lobsterPickerVersion = '1.0.1'
lobsterPicker = "com.larswerkman:lobsterpicker:$lobsterPickerVersion"
}