private MNPopup.MNPopupAction _ReportActivityById(ReportingReason reportingReason)
 {
     return(() =>
     {
         GetSocial.ReportActivity(_activityId, reportingReason, () =>
         {
             _console.LogD(string.Format("Activity {0} reported as {1}!", _activityId, reportingReason));
         }, OnError);
     });
 }