My app uses maps v2, and has been working great. My device has the latest version of Google Play Services. And the SDK Manager shows Rev 11 for the library. I updated to adt 22.2 yesterday, and since, I get this in LogCat:
Google Play services out of date. Requires 3264100 but found 3225132
And the app prompts with "This app won't run unless you update Google Play services". Not so bad, except that there's no way to update, given the device already has it installed. I uninstalled, and reinstalled Google Play service, and confirmed it's running the latest from the store, 3.2.25 Again, this had been working great ever since implementing maps several months ago.
My sdk settings in manifest:
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="17" />
I've tried various combinations of min/target in desperate attempts to resolve this.
In code, I used GooglePlayServicesUtil to verify; system thinks the app needs to update to 3264100
I've searched quite a bit, but most everything I've found relates to issues when running on an avd. What can I to do to fix this?