-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
64 lines (56 loc) · 1.83 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
59
60
61
62
63
64
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.3.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
userName = 'Piasy'
developer = [
id : 'piasy',
name : 'piasy',
email: '[email protected]'
]
license = [
id : 'MIT',
name: 'The MIT License (MIT)',
url : 'http://opensource.org/licenses/MIT'
]
groupName = 'com.github.piasy'
artifactName = 'CameraCompat'
artifactDescription = 'Create a camera preview app with beautify and camera api compatibility!'
artifactLabels = ['Camera', 'Preview', 'GPUImage', 'Beautify', 'Compat']
releaseVersionCode = 14
releaseVersionName = '1.3.0'
minSdkVersion = 15
androidCompileSdkVersion = 24
androidBuildToolsVersion = '25.0.0'
targetSdkVersion = 24
androidSupportSdkVersion = '25.0.0'
fragmentArgsVersion = '3.0.2'
gpuImageVersion = '1.4.1'
rxJavaVersion = '1.2.1'
rxAndroidVersion = '1.2.1'
timberVersion = '4.3.1'
retroLambdaVersion = '2.3.0'
butterKnifeVersion = '8.4.0'
autoBundleVersion = '3.1.1'
}