public void handleMessage(Message message) {
   if (message.what == 1) {
     int i = GooglePlayServicesUtil.isGooglePlayServicesAvailable(lx);
     if (GooglePlayServicesUtil.isUserRecoverableError(i)) {
       GooglePlayServicesUtil.showErrorNotification(i, lx);
     }
     return;
   } else {
     Log.wtf(
         "GoogleAuthUtil",
         (new StringBuilder())
             .append("Don't know how to handle this message: ")
             .append(message.what)
             .toString());
     return;
   }
 }