Add report/solve-recaptcha button in error panel

It will be shown even when nothing could be loaded not due to a network error, and the user can choose to ignore or report it.

Also improve error reporting arguments
Also completely refactor error activity
Also improve some code here and there
This commit is contained in:
Stypox 2020-12-11 14:55:47 +01:00
parent bb398189d6
commit 0ea6b4928c
59 changed files with 886 additions and 1262 deletions

View file

@ -31,7 +31,7 @@ public class ErrorInfoTest {
assertEquals(UserAction.USER_REPORT, infoFromParcel.getUserAction());
assertEquals("youtube", infoFromParcel.getServiceName());
assertEquals("request", infoFromParcel.getRequest());
assertEquals(R.string.general_error, infoFromParcel.getMessage());
assertEquals(R.string.general_error, infoFromParcel.getMessageStringId());
parcel.recycle();
}