-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
31 lines (24 loc) · 994 Bytes
/
build.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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.5.2' apply false
id 'com.android.library' version '8.5.2' apply false
}
ext {
MIN_SDK = 19
TARGET_SDK = 35
groupId = "io.github.iamr0s"
apiArtifactId = "Dhizuku-API"
apiArtifactVersion = "2.5.3"
serverApiArtifactId = "Dhizuku-SERVER_API"
serverApiArtifactVersion = "0.0.4"
POM_NAME = "Dhizuku API"
POM_DESCRIPTION = "API of Dhizuku."
POM_URL = "https://github.com/iamr0s/Dhizuku-API"
POM_SCM_URL = "https://github.com/iamr0s/Dhizuku-API"
POM_SCM_CONNECTION = "scm:git@github.com:iamr0s/Dhizuku-API.git"
POM_SCM_DEV_CONNECTION = "scm:git@github.com:iamr0s/Dhizuku-API.git"
POM_LICENCE_NAME = "MIT License"
POM_LICENCE_URL = "https://github.com/iamr0s/Dhizuku-API/blob/main/LICENSE"
POM_DEVELOPER_NAME = "iamr0s"
POM_DEVELOPER_URL = "https://github.com/iamr0s"
}