Skip to content

Commit 15a967c

Browse files
committed
Bump versions
1 parent 9282658 commit 15a967c

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

app/build.gradle

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 26
5-
buildToolsVersion "26.0.1"
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
applicationId "com.example.mapdemo"
99
minSdkVersion 18
10-
targetSdkVersion 26
10+
targetSdkVersion 27
1111
}
1212

1313
buildTypes {
@@ -18,10 +18,17 @@ android {
1818
}
1919
}
2020

21+
ext {
22+
permissionDispatcherVersion = "3.2.0"
23+
supportLibVersion = "27.1.1"
24+
googlePlayVersion = "15.0.0"
25+
}
26+
2127
dependencies {
22-
compile 'com.android.support:appcompat-v7:26.0.1'
23-
compile 'com.google.android.gms:play-services-maps:11.4.2'
24-
compile 'com.google.android.gms:play-services-location:11.4.2'
25-
compile 'com.github.hotchemi:permissionsdispatcher:3.0.1'
26-
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:3.0.1'
28+
implementation "com.android.support:appcompat-v7:$supportLibVersion"
29+
implementation "com.android.support:support-v13:$supportLibVersion" // to remove lint error, found in .idea/libraries
30+
implementation "com.google.android.gms:play-services-maps:$googlePlayVersion"
31+
implementation "com.google.android.gms:play-services-location:$googlePlayVersion"
32+
implementation "com.github.hotchemi:permissionsdispatcher:$permissionDispatcherVersion"
33+
annotationProcessor "com.github.hotchemi:permissionsdispatcher-processor:$permissionDispatcherVersion"
2734
}

0 commit comments

Comments
 (0)