Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After update - crash com.google.android.gms:play-services:5.2.8

Tags:

my dependencies:

compile "com.android.support:appcompat-v7:20.+" compile 'com.google.android.gms:play-services:5.2.08' compile 'com.android.support:support-v4:21.0.+' 

but still: Google Play services out of date. Requires 5208000 but found 5089036

how is this possible?

UPDATE this work:

compile 'com.google.android.gms:play-services:5.0.89' 

or

compile 'com.google.android.gms:play-services:6.1.11' 

or

compile 'com.google.android.gms:play-services:6.+'

like image 332
Kamil Nękanowicz Avatar asked Aug 08 '14 12:08

Kamil Nękanowicz


1 Answers

Change the Google Play Service version in your build.gradle to the version on your device or emulator.

compile 'com.google.android.gms:play-services:5.0.89'  
like image 86
Jerome Campbell Avatar answered Oct 09 '22 12:10

Jerome Campbell