public static void ShowPreloader(string title, string message, MNAndroidDialogTheme theme)
 {
     CallActivityFunction("ShowPreloader", title, message, (int)theme);
 }
 public static void showRateDialog(string title, string message, string yes, string laiter, string no, MNAndroidDialogTheme theme)
 {
     CallActivityFunction("ShowRateDialog", title, message, yes, laiter, no, (int)theme);
 }
 public static void showMessage(string title, string message, MNAndroidDialogTheme theme)
 {
     showMessage(title, message, "Ok", theme);
 }
 public static void showMessage(string title, string message, string ok, MNAndroidDialogTheme theme)
 {
     CallActivityFunction("ShowMessage", title, message, ok, (int)theme);
 }
    //--------------------------------------
    //  MESSAGING
    //--------------------------------------


    public static void showDialog(string title, string message, MNAndroidDialogTheme theme)
    {
        showDialog(title, message, "Yes", "No", theme);
    }