Finish v1_9_8(102)

This commit is contained in:
Giuseppe Scorrano 2019-11-26 17:31:04 +01:00
commit ed20d8e630
3 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@ apply plugin: 'com.google.gms.google-services'
android { android {
def appVersionCode = 101 def appVersionCode = 102
def appVersionName = '1.9.7' def appVersionName = '1.9.8'
signingConfigs { signingConfigs {
release { release {

View File

@ -72,7 +72,7 @@ public class ClassRouter {
return (T)clazz.newInstance(); return (T)clazz.newInstance();
} catch (InstantiationException | MethodPathNotRegisteredException | IllegalAccessException ex) { } catch (InstantiationException | MethodPathNotRegisteredException | IllegalAccessException ex) {
UtilityExceptions.defaultException(null, ex, true); // UtilityExceptions.defaultException(null, ex, true);
} }
return null; return null;

View File

@ -38,7 +38,7 @@ public class UtilityLogger {
} }
public static void errorMe(Exception ex, String additionalText, Runnable onComplete, RunnableArgs<Exception> onFailed) { public static void errorMe(Exception ex, String additionalText, Runnable onComplete, RunnableArgs<Exception> onFailed) {
if(!(ex instanceof SocketTimeoutException)) { if(!(ex instanceof SocketTimeoutException) && !(ex.getCause() instanceof SocketTimeoutException)) {
String message = UtilityResources.readRawTextFile(R.raw.error_mail); String message = UtilityResources.readRawTextFile(R.raw.error_mail);