OSX 10.9.2
Corona SDK: 2014.2234 (Enterprise)
I’ve implemented Google Play services in my app to get Leaderboard functionality and everything seems OK.
The app can log in to Google Play, I can post high-scores to the leaderboards and everything looks OK to the user.
HOWEVER! Every time I start my app I get the following warnings in logcat:
W/dalvikvm(29042): VFY: unable to resolve static field 2477 (common_google_play_services_install_title) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0041
W/dalvikvm(29042): VFY: unable to resolve static field 2473 (common_google_play_services_enable_title) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x004c
W/dalvikvm(29042): VFY: unable to resolve static field 2483 (common_google_play_services_update_title) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0057
W/dalvikvm(29042): VFY: unable to resolve static field 2480 (common_google_play_services_unsupported_title) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0069
W/dalvikvm(29042): VFY: unable to resolve static field 2474 (common_google_play_services_install_button) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0009
W/dalvikvm(29042): VFY: unable to resolve static field 2471 (common_google_play_services_enable_button) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0010
W/dalvikvm(29042): VFY: unable to resolve static field 2481 (common_google_play_services_update_button) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0017
W/dalvikvm(29042): VFY: unable to resolve static field 2478 (common_google_play_services_unknown_issue) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x0004
W/dalvikvm(29042): VFY: unable to resolve static field 2478 (common_google_play_services_unknown_issue) in Lcom/google/android/gms/R$string;
D/dalvikvm(29042): VFY: replacing opcode 0x60 at 0x000c
I/dalvikvm(29042): DexOpt: unable to optimize static field ref 0x09ac at 0x18 in Lcom/google/android/gms/common/GooglePlayServicesUtil;.b
I/dalvikvm(29042): DexOpt: unable to optimize static field ref 0x09ab at 0x38 in Lcom/google/android/gms/common/GooglePlayServicesUtil;.b
I/dalvikvm(29042): DexOpt: unable to optimize static field ref 0x09a8 at 0x3f in Lcom/google/android/gms/common/GooglePlayServicesUtil;.b
I/dalvikvm(29042): DexOpt: unable to optimize static field ref 0x09b2 at 0x46 in Lcom/google/android/gms/common/GooglePlayServicesUtil;.b
I/dalvikvm(29042): DexOpt: unable to optimize static field ref 0x09af at 0x66 in Lcom/google/android/gms/common/GooglePlayServicesUtil;.b
E/GooglePlayServicesUtil(29042): The Google Play services resources were not found. Check your project configuration to ensure that the resources are included.
I’ve tried copying the resource strings from the Google Play Services lib project to the /res folder of my app, but it doesn’t help.
Any help to shed light on this would be greatly appreciated.