Finish v1_9_8(102)
This commit is contained in:
commit
ed20d8e630
@ -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 {
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
@ -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);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user