-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated Google Services library to 11.8.0 #14
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/workspace.xml | ||
/.idea/tasks.xml | ||
/.idea/libraries | ||
.DS_Store | ||
build | ||
/captures | ||
.externalNativeBuild | ||
.idea/caches/build_file_checksums.ser |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,10 +55,13 @@ android { | |
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
|
||
def playServicesVersion = '11.4.2' | ||
def playServicesVersion = '11.8.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Newest version is 15.0.1. Have you test 15.0.1 with this repo? @j05u3 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I haven't tested with 15.0.1, only with 11.8.0 |
||
def additiveAnimVersion = '1.3.1' | ||
compile "com.google.android.gms:play-services-maps:$playServicesVersion" | ||
compile "at.wirecube:additive_animations:$additiveAnimVersion" | ||
implementation("com.google.android.gms:play-services-maps:$playServicesVersion") | ||
implementation ("at.wirecube:additive_animations:$additiveAnimVersion") { | ||
exclude group: "com.android.support" // let play services handle the support library | ||
exclude group: "com.google.android.gms" | ||
} | ||
|
||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.1' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not also change other libraries to implementation alltogether?