-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
62 lines (54 loc) · 1.46 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
jcenter()
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "menion.android.whereyougo"
versionCode 45
versionName "0.9.3"
minSdkVersion 15
targetSdkVersion 23
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
debug {
debuggable true
}
}
lintOptions {
abortOnError false
checkReleaseBuilds false
}
}
dependencies {
fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:25.3.1'
compile 'com.asamm:locus-api-android:0.2.7'
compile 'com.github.biylda:openwig:3a1e405'
compile 'com.github.jfmdev:aFileDialog:v1.0.6'
compile 'com.github.jspricke.mapsforge-map-whereyougo:mapsforge-map:75d7c20'
compile 'com.journeyapps:zxing-android-embedded:3.5.0'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.6'
}