Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // app/build.grandle set -->
  2. implementation "com.google.android.gms:play-services-base:16.0.1"
  3. implementation "com.google.firebase:firebase-core:16.0.1"
  4. implementation "com.google.firebase:firebase-database:16.0.1"
  5.  
  6. // build.grandle
  7. configurations.all {
  8. resolutionStrategy.eachDependency { DependencyResolveDetails details ->
  9. def requested = details.requested
  10. if (requested.group == 'com.google.android.gms') {
  11. details.useVersion '16.0.1'
  12. }
  13. if (requested.group == 'com.google.firebase') {
  14. details.useVersion '16.0.1'
  15. }
  16. }
  17. }
  18. //grandle.properties
  19. googlePlayServicesVersion=16.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement