File tree 1 file changed +15
-8
lines changed
1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 26
5
- buildToolsVersion " 26 .0.1 "
4
+ compileSdkVersion 27
5
+ buildToolsVersion " 27 .0.3 "
6
6
7
7
defaultConfig {
8
8
applicationId " com.example.mapdemo"
9
9
minSdkVersion 18
10
- targetSdkVersion 26
10
+ targetSdkVersion 27
11
11
}
12
12
13
13
buildTypes {
@@ -18,10 +18,17 @@ android {
18
18
}
19
19
}
20
20
21
+ ext {
22
+ permissionDispatcherVersion = " 3.2.0"
23
+ supportLibVersion = " 27.1.1"
24
+ googlePlayVersion = " 15.0.0"
25
+ }
26
+
21
27
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 "
27
34
}
You can’t perform that action at this time.
0 commit comments