Open
Description
Description
In our Unity game, we have a lot of android plugins that need to report exceptions.
Since we use the Unity SDK, there is no obvious way to report these java/kotlin exceptions.
Describe the solution you'd like
Any way to send a java/kotlin exception to the bugsnag dashboard.
A simple api could be: public void Notify(AndroidJavaObject jvmException)
Describe alternatives you've considered
Calling Bugsnag.Notify with stacktrace string
Bugsnag.Notify(new Exception("<my android stacktrace>"))
Result: I think the message is not retraced? (class names will show a.b.c.d)
Calling the bugsnag android SDK via reflection:
package com.demo.util
import android.content.Context
import android.util.Log
import com.unity3d.player.UnityPlayer
import java.lang.Exception
import java.lang.reflect.InvocationTargetException
object BugsnagTest {
@JvmStatic
fun reportException() {
val clazz = Class.forName("com.bugsnag.android.Bugsnag")
// required, otherwise notify() will throw an exception
val bsgInit = clazz.getDeclaredMethod("init", Context::class.java)
safeInvoke {
bsgInit(null, UnityPlayer.currentActivity)
}
val bsgNotify = clazz.getDeclaredMethod("notify", java.lang.Throwable::class.java)
val ex = Exception("hello")
safeInvoke {
bsgNotify(null, ex)
}
}
private fun safeInvoke(block: () -> Unit) {
try {
block()
} catch (ex: InvocationTargetException) {
Log.wtf("BugsnagTest", ex.cause)
} catch (ex: Throwable) {
Log.wtf("BugsnagTest", ex)
}
}
}
Result: This does work.. but any native crash that happens after this (e.g. SIGTRAP) is not reported to bugsnag.