forked from facebookarchive/shimmer-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.gradle
32 lines (29 loc) · 1.05 KB
/
versions.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
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
ext {
versions = [
targetSdk : 28,
compileSdk : 28,
minSdk : 14,
buildTools : '28.0.3',
kotlin : '1.4.10',
androidGradlePlugin: '4.1.0',
constraintLayout : '2.0.4',
androidXAnnotations: '1.0.1',
]
plugs = [
"agp" : "com.android.tools.build:gradle:${versions.androidGradlePlugin}",
"kotlin": "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
]
deps = [
shimmer : "com.facebook.shimmer:shimmer:$VERSION_NAME",
kotlinStdlib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
constraintLayout : "androidx.constraintlayout:constraintlayout:${versions.constraintLayout}",
androidXAnnotations: "androidx.annotation:annotation:${versions.androidXAnnotations}",
]
}