Finish v1.47.06(519)
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good
This commit is contained in:
commit
5107897888
@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
def appVersionCode = 518
|
def appVersionCode = 519
|
||||||
def appVersionName = '1.47.05'
|
def appVersionName = '1.47.06'
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
|
|||||||
@ -19,6 +19,8 @@ import androidx.sqlite.db.SimpleSQLiteQuery;
|
|||||||
|
|
||||||
import com.annimon.stream.Stream;
|
import com.annimon.stream.Stream;
|
||||||
import com.google.android.material.snackbar.Snackbar;
|
import com.google.android.material.snackbar.Snackbar;
|
||||||
|
import com.google.firebase.crashlytics.CustomKeysAndValues;
|
||||||
|
import com.google.firebase.crashlytics.FirebaseCrashlytics;
|
||||||
import com.harrysoft.androidbluetoothserial.BluetoothManager;
|
import com.harrysoft.androidbluetoothserial.BluetoothManager;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
@ -318,6 +320,9 @@ public class MainSettingsFragment extends PreferenceFragmentCompat implements IT
|
|||||||
this.closeProgress();
|
this.closeProgress();
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
handler.post(() -> {
|
handler.post(() -> {
|
||||||
|
FirebaseCrashlytics.getInstance().recordException(ex, new CustomKeysAndValues.Builder() {{
|
||||||
|
putString("ExportLog", "Error while exporting log");
|
||||||
|
}}.build());
|
||||||
this.closeProgress();
|
this.closeProgress();
|
||||||
UtilityExceptions.defaultException(requireContext(), ex);
|
UtilityExceptions.defaultException(requireContext(), ex);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user