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" applicationId "it.integry.integrywmsnative"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode 6 versionCode 7
versionName "1.0.3" versionName "1.0.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }

View File

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

View File

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