-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (35 loc) · 1.03 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
apply plugin: 'android'
dependencies {
compile project(':library')
compile project(':addons:preferences')
compile project(':addons:slider')
}
android {
compileSdkVersion 18
buildToolsVersion '18.1'
defaultConfig {
targetSdkVersion 18
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
if (project.hasProperty('holoeverywhere.sign.storeFile')) {
signingConfigs {
release {
storeFile = file(project.getProperty('holoeverywhere.sign.storeFile'))
keyAlias = project.getProperty('holoeverywhere.sign.keyAlias')
storePassword = project.getProperty('holoeverywhere.sign.storePassword')
keyPassword = project.getProperty('holoeverywhere.sign.keyPassword')
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
}