-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (62 loc) · 1.57 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.0'
}
}
apply plugin: 'com.android.application'
repositories {
maven {
url "http://dl.bintray.com/populov/maven"
}
maven {
url "https://raw.github.com/kolavar/android-support-v4-preferencefragment/master/maven-repository/"
}
mavenCentral()
}
dependencies {
compile 'com.android.support:support-v4:21.0.0'
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
compile 'com.viewpagerindicator:library:2.4.1@aar'
compile 'com.github.japgolly.android:svg-android:2.0.6'
compile 'com.android.support:support-v4-preferencefragment:1.0.0@aar'
}
android {
compileSdkVersion 21
buildToolsVersion "21.0.1"
defaultConfig {
minSdkVersion 9
targetSdkVersion 21
versionCode 12
versionName "1.4.2"
}
lintOptions {
lintConfig file("lint.xml")
}
productFlavors {
pro {
packageName = 'com.jncreations.whiskymap'
}
lite {
packageName = 'com.jncreations.whiskymaplite'
}
}
sourceSets {
main {
res.srcDirs = ['src/main/res', 'src/main/whisky-theme', 'src/main/maps']
}
}
buildTypes {
release {
runProguard true
proguardFile 'proguard.txt'
}
debug {
runProguard false
proguardFile 'proguard.txt'
}
}
}