-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.gradle
59 lines (54 loc) · 1.83 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
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
58
59
/*
* Copyright 2020 Cagatay Ulusoy (Ulus Oy Apps). All rights reserved.
*
* 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 {
// configuration features about the application
package_name = "com.ulusoyapps.tictactoe"
build_tools_version = "28.0.3"
min_sdk_version = 21
target_sdk_version = 29
compile_sdk_version = 29
version_code = 1
version_name = "1.0"
// Android
material_version = '1.3.0-alpha01'
constraint_layout_version = '2.0.0-beta7'
appcompat_version = "1.1.0"
fragment_version = "1.3.0-alpha06"
//Test dependencies
junitVersion = '4.12'
mockitoCoreVersion = '3.2.0'
mockitoKotlinVersion = '2.2.0'
truthVersion = '1.0.1'
testCoreVersion = "1.2.0"
archCoreTestingVersion = '2.1.0'
androidxJunitVersion = "1.1.1"
coroutinesTestVersion = '1.3.5'
// Android eXtensions
// Release notes at: https://developer.android.com/jetpack/androidx/releases/
lifecycle_version = '2.3.0-alpha05'
lifecycle_ktx_version = '2.2.0'
core_ktx_version = "1.3.0"
appCompat_version = '1.3.0-alpha01'
core_version = '1.3.0'
nav_version = '2.3.0'
material_version = '1.3.0-alpha01'
// 3rd party
dagger_version = '2.27'
coroutines_version = "1.3.7"
timber_version = "4.7.1"
lottie_version = "3.4.1"
moshi_version = "1.9.3"
}