-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathbuild.gradle
41 lines (37 loc) · 971 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
32
33
34
35
36
37
38
39
40
41
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'com.novoda:bintray-release:0.9.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 29
minSdkVersion = 16
targetSdkVersion = 27
supportLibraryVersion = '1.1.0'
materialLibraryVersion = '1.2.0-alpha02'
userOrg = 'liaoinstan'
repoName = "maven"
groupId = 'com.liaoinstan.springview'
desc = 'SpringView For Android'
website = 'https://github.com/liaoinstan/SpringView'
licences = ['Apache-2.0']
}
//gradlew clean build bintrayUpload -PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY