forked from gotev/android-upload-service
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.gradle
37 lines (31 loc) · 1.13 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
ext {
mavRepoInternalUrl = System.getenv('LOCAL_MAVEN_URL')
github_username = 'gotev'
github_repository_name = 'android-upload-service'
maintainer = 'Aleksandar Gotev'
library_licenses = ["Apache-2.0"]
library_licenses_url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
library_project_group = 'net.gotev'
library_version = '4.6.0'
version_code = 47
min_sdk = 21
target_sdk = 30
demo_app_id = 'net.gotev.uploadservicedemo'
// Gradle classpath dependencies versions
kotlin_version = '1.4.32'
gradle_version = '4.1.3'
kotlin_lint_version = '9.0.0'
// 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'
mock_web_server_version = '4.9.0'
// Library and app dependencies versions
androidx_lifecycle_version = '2.3.1'
androidx_appcompat_version = '1.3.0'
}