-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
67 lines (56 loc) · 1.85 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
65
66
67
// 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.3.1'
classpath 'com.novoda:bintray-release:0.4.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 16
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
}
def supportLibraryVersion = '25.3.1'
def butterknifeVersion = '8.5.1'
def louterVersion = '0.2.1'
ext.deps = [
android : 'com.google.android:android:4.1.1.4',
supportCompat : "com.android.support:appcompat-v7:$supportLibraryVersion",
supportAnnotations: "com.android.support:support-annotations:$supportLibraryVersion",
butterknife : "com.jakewharton:butterknife:$butterknifeVersion",
javapoet : "com.squareup:javapoet:1.7.0",
okio : "com.squareup.okio:okio:1.11.0",
autoservice : 'com.google.auto.service:auto-service:1.0-rc2',
]
ext.deps.test = [
junit : "junit:junit:4.12",
mockito : "org.mockito:mockito-core:2.3.0",
truth : "com.google.truth:truth:0.30",
compiletesting: "com.google.testing.compile:compile-testing:0.10",
]
ext.deps.apt = [
butterknife: "com.jakewharton:butterknife-compiler:$butterknifeVersion",
]
ext.bintray = [
repoName : "AndroidDevLib",
userOrg : "luolc",
groupId : "com.luolc.louter",
publishVersion: "$louterVersion",
desc : "Louter is a cross-module lightweight Android route framework.",
website : "https://github.com/Luolc/Louter",
licences : ['MIT'],
]