mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-02-06 22:02:37 -05:00
0.1.4 catch and report a rare? Compose exception
kotlin.NullPointerException androidx.ui.core.selection.SelectionManager$handleDragObserver$1.onStart (SelectionManager.kt:184)
This commit is contained in:
@@ -16,8 +16,8 @@ android {
|
||||
applicationId "com.geeksville.mesh"
|
||||
minSdkVersion 22 // The oldest emulator image I have tried is 22 (though 21 probably works)
|
||||
targetSdkVersion 29
|
||||
versionCode 103
|
||||
versionName "0.1.3"
|
||||
versionCode 104
|
||||
versionName "0.1.4"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
|
||||
@@ -335,7 +335,7 @@ class MainActivity : AppCompatActivity(), Logging,
|
||||
override fun dispatchTouchEvent(ev: MotionEvent?): Boolean {
|
||||
return try {
|
||||
super.dispatchTouchEvent(ev)
|
||||
} catch (ex: IllegalStateException) {
|
||||
} catch (ex: Throwable) {
|
||||
Exceptions.report(
|
||||
ex,
|
||||
"dispatchTouchEvent"
|
||||
|
||||
Reference in New Issue
Block a user