-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
49 lines (40 loc) · 825 Bytes
/
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
apply plugin: 'android'
apply plugin: 'java'
buildscript {
repositories {
mavenRepo(urls: 'http://jvoegele.com/maven2/')
}
dependencies {
classpath 'com.jvoegele.gradle.plugins:android-plugin:0.9.9'
}
}
repositories {
mavenCentral()
mavenRepo(urls: 'https://oss.sonatype.org/content/groups/public/')
}
dependencies {
compile 'com.embedly:embedly-api:0.1.+'
}
version = '0.1.0'
androidPackage {
keyStore = keyStore
keyAlias = keyAlias
keyStorePassword = keyStorePassword
keyAliasPassword = keyAliasPassword
}
processResources {
expand (project.properties)
}
sourceSets {
main {
java {
srcDir 'src'
}
}
}
task configureDebug << {
jar.classifier = 'debug'
}
task configureRelease << {
proguard.enabled = true
}