-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
81 lines (71 loc) · 1.67 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
68
69
70
71
72
73
74
75
76
77
78
79
80
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
group = projectGroup
version = projectVersion
apply plugin: 'com.android.application'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
}
android {
compileSdkVersion 21
buildToolsVersion '22.0.0'
defaultConfig {
applicationId 'com.urbandroid.doze'
minSdkVersion 23
targetSdkVersion 23
versionCode 1
versionName '1.0'
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
aidl.srcDirs = ['src']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
}
}
signingConfigs {
release {
storeFile file("android.keystore")
storePassword projectKeystorePassword
keyAlias "mhdroid"
keyPassword projectKeystorePassword
}
}
buildTypes {
release {
debuggable false
minifyEnabled false
signingConfig signingConfigs.release
}
}
lintOptions {
abortOnError false
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
productFlavors {
}
}