-
Notifications
You must be signed in to change notification settings - Fork 226
/
dependencies.gradle
109 lines (84 loc) · 4.94 KB
/
dependencies.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
The MIT License (MIT)
Copyright (c) 2019 vk.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
ext.sdkVersions = [
code : '33',
name : '4.1.0',
minSdk : 21,
targetSdk : 30,
compileSdk : '31',
buildTools : '31.0.0',
kotlin : '1.8.10',
androidXAppCompat : '1.4.2',
androidXActivity : '1.4.0',
androidXRV : '1.2.1',
androidXCollection : '1.1.0',
okHttp : '4.9.3',
picasso : '2.71828',
androidGradlePlugin : '7.4.2',
gson : '2.8.8',
junit : '4.13.2',
mockito : '1.6.0',
]
ext.sdkLibraries = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$sdkVersions.kotlin",
okHttp : "com.squareup.okhttp3:okhttp:$sdkVersions.okHttp",
okHttpLoggingInterceptor : "com.squareup.okhttp3:logging-interceptor:$sdkVersions.okHttp",
picasso : "com.squareup.picasso:picasso:$sdkVersions.picasso",
gson :"com.google.code.gson:gson:$sdkVersions.gson",
vkUid :"com.vk:android-sdk-id:$sdkVersions.name"
]
ext.sdkLibrariesSupport = [
appCompat : "androidx.appcompat:appcompat:$sdkVersions.androidXAppCompat",
recyclerView : "androidx.recyclerview:recyclerview:$sdkVersions.androidXRV",
collection : "androidx.collection:collection:$sdkVersions.androidXCollection",
activity : "androidx.activity:activity-ktx:$sdkVersions.androidXActivity"
]
ext.testLibraries = [
junit : "junit:junit:$sdkVersions.junit",
mockito : "com.nhaarman:mockito-kotlin:$sdkVersions.mockito",
]
ext.sdkGradlePlugins = [
android : "com.android.tools.build:gradle:$sdkVersions.androidGradlePlugin",
kotlinGradle : "org.jetbrains.kotlin:kotlin-gradle-plugin:$sdkVersions.kotlin",
bintryRelease : "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5",
]
ext.sdkPublish = [
POM_URL : 'https://github.com/VKCOM/vk-android-sdk',
POM_SCM_URL : 'https://github.com/VKCOM/vk-android-sdk',
POM_SCM_CONNECTION : 'scm:git:git://github.com/VKCOM/vk-android-sdk.git',
POM_SCM_DEV_CONNECTION : 'scm:git:git://github.com/VKCOM/vk-android-sdk.git',
POM_LICENCE_NAME : 'MIT',
POM_LICENCE_URL : 'https://github.com/VKCOM/vk-android-sdk/raw/master/LICENSE',
POM_LICENCE_DISTRIBUTION : 'repo',
POM_DEVELOPER_ID : 'vk',
POM_DEVELOPER_NAME : 'vk.com',
POM_NAME : "VK API library",
POM_ARTIFACT_ID : 'android-sdk-core',
POM_ARTIFACT_DESCRIPTION : 'Main VK Android API library',
POM_API_NAME : 'VK API Models library',
POM_API_ARTIFACT_ID : 'android-sdk-api',
POM_API_DESCRIPTION : 'VK Android API generated library',
POM_ID_NAME : 'VK User Id library',
POM_ID_ARTIFACT_ID : 'android-sdk-id',
POM_ID_DESCRIPTION : 'VK Android User Id library',
POM_HOST_NAME : 'VK Host Resolution library',
POM_HOST_ARTIFACT_ID : 'android-sdk-host',
POM_HOST_DESCRIPTION : 'VK Android Host Resolution library',
]