forked from lorensiuswlt/NewQuickAction3D
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.gradle
42 lines (36 loc) · 797 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
42
group = "me.piruin"
description = 'Android Library for easy create Tooltips with some action or just as decoration.'
version = {->
def stdout = new ByteArrayOutputStream()
exec {
commandLine 'git', 'describe', '--tags'
standardOutput = stdout
}
return stdout.toString().trim()
}.call()
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
ext {
JAVA_VERSION = JavaVersion.VERSION_1_8
ANDROID_MIN_SDK = 16
ANDROID_TARGET_SDK = 27
ANDROID_SUPPORT_VERSION = "27.1.1"
githubRepo = 'piruin/quickaction'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.5.1'
distributionUrl = distributionUrl.replace("bin", "all")
}