-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
58 lines (51 loc) · 1.73 KB
/
config.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
ext.deps = [:]
def build_versions = [:]
build_versions.min_sdk = 21
build_versions.compile_sdk = 29
build_versions.target_sdk = 29
build_versions.build_tools = "29.0.3"
ext.build_versions = build_versions
def kotlin_version = [:]
kotlin_version.sdk = '1.5.20'
kotlin_version.coroutines = '1.4.1'
def androidx_version = [:]
androidx_version.appcompat = "1.2.0"
androidx_version.activity_ktx = "1.1.0"
androidx_version.fragment_ktx = "1.2.5"
androidx_version.lifecycle = "2.2.0"
androidx_version.core_ktx = "1.3.2"
androidx_version.recyclerview = "1.1.0"
androidx_version.viewpager = "1.0.0"
androidx_version.viewpager2 = "1.0.0"
androidx_version.palette = "1.0.0"
androidx_version.constraintlayout = "2.0.4"
androidx_version.swiperefreshlayout = "1.1.0"
androidx_version.material = "1.2.1"
androidx_version.room = "2.2.5"
def versions = [:]
versions.activity = '1.1.0'
versions.kotlin = kotlin_version
versions.androidx = androidx_version
versions.fresco = "2.3.0"
versions.glide = "4.11.0"
versions.retrofit = "2.9.0"
versions.gson = "2.8.6"
versions.photo_view = "2.3.0"
versions.desugar = '1.0.9'
versions.mmkv = '1.2.7'
ext.versions = versions