forked from owntracks/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
93 lines (78 loc) · 2.49 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
81
82
83
84
85
86
87
88
89
90
91
92
93
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
mavenCentral()
maven { url 'https://repo.eclipse.org/content/repositories/paho-releases/' }
maven { url "http://jcenter.bintray.com"}
maven { url 'https://maven.fabric.io/public' }
flatDir {
dirs 'libs'
}
}
dependencies {
compile 'com.android.support:support-v4:22.+'
compile 'com.android.support:appcompat-v7:22.+'
compile 'com.android.support:design:22.+'
compile 'com.android.support:recyclerview-v7:22.0.+'
compile 'com.google.android.gms:play-services-maps:7.+'
compile 'com.google.android.gms:play-services-location:7.+'
compile 'com.google.android.gms:play-services-base:7.+'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'de.greenrobot:greendao:1.3.7'
compile 'org.altbeacon:android-beacon-library:2.+@aar'
compile 'ch.hsr:geohash:1.1.0'
compile 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.0.2'
compile('com.crashlytics.sdk.android:crashlytics:+@aar') {
transitive = true;
}
// Widget libraries
compile 'com.github.curioustechizen.android-ago:library:1.3.0'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
compile('com.mikepenz:materialdrawer:3.0.6@aar') {
transitive = true
}
compile 'com.afollestad:material-dialogs:0.7.5.2'
compile 'com.joanzapata.android:android-iconify:1.0.10'
compile 'com.github.monxalo:android-section-adapter:1.0.1@jar'
compile 'com.obsez.android.lib.filechooser:filechooser:1.1.2'
}
android {
signingConfigs {
debug {
keyAlias 'debug.owntracks.org'
keyPassword '__DEBUG__'
storeFile file('./debug-keystore.jks')
storePassword '__DEBUG__'
}
}
compileSdkVersion 22
buildToolsVersion '22.0.1'
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
}
}
buildTypes {
release {
ext.enableCrashlytics = true
}
debug {
ext.enableCrashlytics = false
}
}
}