-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (56 loc) · 1.47 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
repositories {
mavenCentral()
maven {
url "http://maven.google.com/"
}
}
allprojects {
repositories {
// ..
maven { url 'https://jitpack.io' }
}
}
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
apply plugin: "com.android.application"
android {
dependencies {
implementation 'com.yandex.android:mapkit:3.2.0'
implementation 'com.yandex.android:search:3.2.0'
implementation 'com.yandex.android:directions:3.2.0'
implementation 'com.yandex.android:transport:3.2.0'
implementation 'com.yandex.android:places:3.2.0'
implementation 'com.sothree.slidinguppanel:library:3.4.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.trafi:anchor-bottom-sheet-behavior:0.13-alpha'
}
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 15
targetSdkVersion 27
}
sourceSets {
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
java.srcDirs = ['src/main/java']
res.srcDirs = ['src/main/res']
}
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
}
task wrapper(type: Wrapper) {
gradleVersion = "4.5.1"
}