forked from owntracks/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (64 loc) · 1.98 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
// 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.1.0'
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://repo.eclipse.org/content/repositories/paho-releases/' }
mavenCentral()
flatDir {
dirs 'libs'
}
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile 'com.android.support:support-v4:21.0.3'
compile 'com.google.android.gms:play-services-maps:6.5.87'
compile 'com.google.android.gms:play-services-location:6.5.87'
compile 'com.google.android.gms:play-services-base:latest'
compile 'com.bugsnag:bugsnag-android:+'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'de.greenrobot:greendao:1.3.7'
compile 'org.altbeacon:android-beacon-library:2.+@aar'
compile 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.0.2'
compile('org.eclipse.paho:org.eclipse.paho.android.service:1.0.2') {
exclude module: 'support-v4'
}
compile('com.crashlytics.sdk.android:crashlytics:2.2.1@aar') {
transitive = true;
}
// Material design widget libraries
compile 'com.rengwuxian.materialedittext:library:1.8.2'
compile('com.mikepenz.materialdrawer:library:0.9.6@aar') {
transitive = true
}
}
android {
signingConfigs {
debug {
keyAlias 'debug.owntracks.org'
keyPassword '__DEBUG__'
storeFile file('./debug-keystore.jks')
storePassword '__DEBUG__'
}
}
compileSdkVersion 21
buildToolsVersion '21.1.2'
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
}
}
}