-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
58 lines (48 loc) · 1.2 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
// https://docs.gradle.org/current/userguide/userguide.html
// http://google.github.io/android-gradle-dsl/current/
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
}
}
ext.srcCompat = 1.8
ext.acl = {
compileSdkVersion 28
compileOptions {
sourceCompatibility rootProject.ext.srcCompat
targetCompatibility rootProject.ext.srcCompat
}
defaultConfig {
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes { release { minifyEnabled false } }
lintOptions { abortOnError false }
}
ext.bintray = {
user = System.getenv("BINTRAY_USER")
key = System.getenv("BINTRAY_KEY")
publications = ["$project.name"]
pkg {
repo = "maven"
name = "droidcook"
licenses = ["BSD 2-clause"]
vcsUrl = "https://github.com/thesmythgroup/DroidCook.git"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
group = "com.codesmyth.droidcook"
version = "0.7.0"
}