forked from biylda/WhereYouGo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
68 lines (58 loc) · 1.77 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
buildscript {
repositories {
jcenter()
google()// <-- add this.
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
}
allprojects {
repositories {
google()// <-- add this.
jcenter()
maven { url "https://jitpack.io" }
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
//buildToolsVersion "25.0.3"
defaultConfig {
applicationId "menion.android.whereyougo"
versionCode 46
versionName "1.9.5cghove"
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'])
implementation 'com.android.support:support-v4:25.3.1'
implementation 'com.asamm:locus-api-android:0.2.7'
implementation 'com.github.biylda:openwig:3a1e405'
implementation 'com.github.jfmdev:aFileDialog:v1.0.6'
implementation 'com.github.jspricke.mapsforge-map-whereyougo:mapsforge-map:75d7c20'
implementation 'com.journeyapps:zxing-android-embedded:3.5.0'
implementation 'com.squareup.okhttp3:okhttp:3.6.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.6'
implementation 'com.google.android.gms:play-services-places:9.2.1'
}