-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
manifest.gradle
44 lines (36 loc) · 1.25 KB
/
manifest.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
ext {
mavRepoInternalUrl = System.getenv('LOCAL_MAVEN_URL')
github_username = 'gotev'
github_repository_name = 'recycler-adapter'
maintainer = 'Aleksandar Gotev'
library_licenses = ["Apache-2.0"]
library_licenses_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
library_project_group = 'net.gotev'
library_version = '4.1.1'
version_code = 6
min_sdk = 21
target_sdk = 30
demo_app_id = 'net.gotev.recycleradapterdemo'
// Gradle classpath dependencies versions
kotlin_version = '1.4.32'
gradle_version = '7.0.2'
// Library and app testing dependencies versions
junit_version = '4.13'
androidx_test_core_version = '1.3.0'
androidx_test_runner_version = '1.3.0'
androidx_test_rules_version = '1.3.0'
androidx_test_ext_junit_version = '1.1.2'
androidx_test_ext_truth_version = '1.3.0'
truth_version = '1.0.1'
androidx_test_espresso_version = '3.3.0'
// Library and app dependencies versions
androidx_recyclerview_version = '1.2.1'
androidx_appcompat_version = '1.3.0'
// App dependencies
okhttp_version = '4.9.1'
retrofit_version = '2.9.0'
coroutines_version = '1.3.9'
// Paging
paging_version = '2.1.2'
lifecycle_version = '2.3.1'
}