-
Notifications
You must be signed in to change notification settings - Fork 214
/
build.gradle
41 lines (34 loc) · 1.07 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
// 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.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'
classpath "com.tinkerpatch.sdk:tinkerpatch-gradle-plugin:1.1.1"
}
}
ext {
configuration = [
package : "com.ozj.baby",
buildToolsVersion: "23.0.2",
compileVersion : 25,
minSdk : 16,
targetSdk : 22,
version_code : 20170203,
version_name : "1.6.0",
]
}
allprojects {
repositories {
jcenter()
maven { url "https://raw.githubusercontent.com/umeng/mvn-repo-umeng/master/repository" }
maven { url "http://dl.bintray.com/tbruyelle/tbruyelle" }
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}