forked from thyrlian/AwesomeValidation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (53 loc) · 1.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// 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:3.4.2'
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.6"
}
}
plugins {
id "com.jfrog.bintray" version "1.8.4"
}
ext {
minSdk = 14
targetSdk = 28
compileSdkVersion = 28
buildToolsVersion = "28.0.3"
androidSupportLibVersion = "28.0.0"
versionCode = 9
versionName = "4.2"
}
bintray {
user = System.getenv("BINTRAY_USER")
key = System.getenv("BINTRAY_KEY")
filesSpec {
from "build/libs"
into "/"
}
pkg {
repo = "android-libraries"
name = "com.basgeekball.awesomevalidation"
licenses = ["MIT"]
websiteUrl = "https://github.com/thyrlian/AwesomeValidation"
issueTrackerUrl = "https://github.com/thyrlian/AwesomeValidation/issues"
vcsUrl = "https://github.com/thyrlian/AwesomeValidation.git"
labels = ["Android", "UI", "validation"]
version {
name = project.ext.versionName
released = new Date()
}
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven {
url "https://maven.google.com"
}
}
}