Completato exception handler

This commit is contained in:
Gius95 2018-12-13 21:25:27 +01:00
parent d5723df178
commit 25aefc9823
4 changed files with 4 additions and 10 deletions

Binary file not shown.

View File

@ -9,8 +9,8 @@ android {
applicationId "it.integry.integrywmsnative"
minSdkVersion 21
targetSdkVersion 28
versionCode 6
versionName "1.0.3"
versionCode 7
versionName "1.0.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -44,15 +44,12 @@ public class ExceptionsHandler implements Thread.UncaughtExceptionHandler {
@Override
public void run() {
Looper.prepare();
DialogException.make(context, () -> {
}).show();
DialogException.make(context, context::finish).show();
Looper.loop();
}
}.start();
context.finish();
//System.exit(0);
}

View File

@ -56,9 +56,6 @@ public class RettificaGiacenzeFragment extends Fragment implements ITitledFragme
init();
Integer a = null;
String b = a.toString();
return mBinding.getRoot();
}