mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00: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:
parent
309cc464e9
commit
389dbf4476
2 changed files with 3 additions and 3 deletions
|
|
@ -16,8 +16,8 @@ android {
|
||||||
applicationId "com.geeksville.mesh"
|
applicationId "com.geeksville.mesh"
|
||||||
minSdkVersion 22 // The oldest emulator image I have tried is 22 (though 21 probably works)
|
minSdkVersion 22 // The oldest emulator image I have tried is 22 (though 21 probably works)
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode 103
|
versionCode 104
|
||||||
versionName "0.1.3"
|
versionName "0.1.4"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
||||||
|
|
@ -335,7 +335,7 @@ class MainActivity : AppCompatActivity(), Logging,
|
||||||
override fun dispatchTouchEvent(ev: MotionEvent?): Boolean {
|
override fun dispatchTouchEvent(ev: MotionEvent?): Boolean {
|
||||||
return try {
|
return try {
|
||||||
super.dispatchTouchEvent(ev)
|
super.dispatchTouchEvent(ev)
|
||||||
} catch (ex: IllegalStateException) {
|
} catch (ex: Throwable) {
|
||||||
Exceptions.report(
|
Exceptions.report(
|
||||||
ex,
|
ex,
|
||||||
"dispatchTouchEvent"
|
"dispatchTouchEvent"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue