Real version of google game services version

I started working on android development and I ran into some problems with google maps. here are some questions

I know that adv targeting 4.2 or higher includes Google Play services, does this mean real devices with lower versions won't run my app?

01-28 15:46:55.529: W/GooglePlayServicesUtil(627): Google Play services out of date.  Requires 4132500 but found 4131530

      

the lowest version for my app is 2.3 and it worked until I use gps and polilyne to draw routes between markers. I found that Google Play services are out of date. Required 4132500 found 4131530 if device with Android version 2.3 got google play services 4132500, will my app work fine?

if so, with next updated versions of google play services - will my app work?

What can I do to make my app work fine on most devices?

By the way the app just works correctly on bluestacks

-1


source to share


1 answer


You just need to include the google play services project in the project , and Maps v2 will work on all devices with 2.3 and up.



Note. Those devices that do not support google play services

or glEsVersion version 0x00020000

will not be able to display maps. So, before downloading the map, you should check if this device supports it google play services

or not. If not, you can show the message to the user.

0


source







All Articles