-
Notifications
You must be signed in to change notification settings - Fork 68
/
build.gradle
56 lines (46 loc) · 1.6 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0-alpha2'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
}
}
ext {
versionMajor = 2
versionMinor = 2
versionPatch = 3
versionCode = versionMajor * 1000 + versionMinor * 100 + versionPatch
versionName = versionMajor + "." + versionMinor + "." + versionPatch
minSdkVersion = 15
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = BUILD_TOOLS_VERSION
}
ext.libraries = [
butterknife : 'com.jakewharton:butterknife:7.0.1',
appcompat : 'com.android.support:appcompat-v7:' + SUPPORT_LIBS_VERSION,
supportv4 : 'com.android.support:support-v4:' + SUPPORT_LIBS_VERSION,
supportv7 : 'com.android.support:support-v7:' + SUPPORT_LIBS_VERSION,
supportv13 : 'com.android.support:support-v13:' + SUPPORT_LIBS_VERSION,
]
task wrapper(type: Wrapper) {
gradleVersion = '1.10'
}
project.ext.preDexLibs = project.hasProperty('disablePreDex')
subprojects {
project.plugins.whenPluginAdded { plugin ->
if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
} else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
}
}
}