Hi, I'm using Google Play Services for Maps & Admob.
The app runs fine when the device has the latest Google Play Services version. It always complains about missing resources on the debug log, but works fine. I'm using the Gingerbread version.
The problem starts with older versions of Play Services installed. There's a utility method to check for wrong versions, and it provides a dialog to ask for the user to download the latest version. The problem is that creating the dialog fails, I think because of the missing resources.
It crashes on this line:
GooglePlayServicesUtil.GetErrorDialog(resultCode, this, 0)
with an Unhandled Exception.
The logs are like this:
01-28 19:26:38.538 W/dalvikvm(22460): VFY: unable to resolve static field 4552 (common_google_play_services_invalid_account_text) in Lcom/google/android/gms/R$string;
01-28 19:26:38.538 D/dalvikvm(22460): VFY: replacing opcode 0x60 at 0x0074
01-28 19:26:38.538 W/dalvikvm(22460): VFY: unable to resolve static field 4557 (common_google_play_services_unsupported_date_text) in Lcom/google/android/gms/R$string;
01-28 19:26:38.538 D/dalvikvm(22460): VFY: replacing opcode 0x60 at 0x007b
01-28 19:26:38.548 W/dalvikvm(22460): VFY: unable to resolve static field 4556 (common_google_play_services_unknown_issue) in Lcom/google/android/gms/R$string;
01-28 19:26:38.548 D/dalvikvm(22460): VFY: replacing opcode 0x60 at 0x000c
01-28 19:26:38.558 E/GooglePlayServicesUtil(22460): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
01-28 19:26:38.568 W/GooglePlayServicesUtil(22460): Google Play services out of date. Requires 4030500 but found 3027105
01-28 19:26:39.488 W/AntenasActivity(22460): resultCode: 2
Any hints? Thanks :)