-
Notifications
You must be signed in to change notification settings - Fork 234
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (67 loc) · 2.06 KB
/
build.gradle
File metadata and controls
80 lines (67 loc) · 2.06 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.3"
// ./gradlew publishReleasePublicationToSonatypeRepository
// ./gradlew closeAndReleaseRepository
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.30'
classpath 'io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0'
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "http://dl.bintray.com/tbruyelle/tbruyelle" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
userName = 'Piasy'
developer = [
id : 'piasy',
name : 'piasy',
email: 'xz4215@gmail.com'
]
license = [
id : 'MIT',
name: 'The MIT License (MIT)',
url : 'http://opensource.org/licenses/MIT'
]
groupName = 'com.github.piasy'
artifactName = 'RxAndroidAudio'
artifactDescription = 'Android Audio encapsulation library, with part Rx support.'
artifactLabels = ['rx', 'android', 'audio']
releaseVersionCode = 16
releaseVersionName = '1.6.0'
androidCompileSdkVersion = 29
androidBuildToolsVersion = '29.0.3'
androidSupportSdkVersion = '28.0.0'
rxJava2Version = "2.2.4"
androidXVersion = "1.0.0"
androidMinSdkVersion = 14
androidTargetSdkVersion = 28
}
ext {
projectName = 'RxAndroidAudio'
groupName = 'com.github.piasy'
artifactDescription = 'Android Audio encapsulation library, with part Rx support.'
releaseVersionCode = 17
releaseVersionName = '1.7.0'
PUBLISH_GROUP_ID = groupName
PUBLISH_VERSION = releaseVersionName
androidCompileSdkVersion = 29
androidBuildToolsVersion = '29.0.3'
androidMinSdkVersion = 14
androidTargetSdkVersion = 29
androidSupportSdkVersion = '28.0.0'
rxJava2Version = "2.2.4"
androidXVersion = "1.0.0"
}
apply plugin: 'io.codearte.nexus-staging'