flutter_bugly icon indicating copy to clipboard operation
flutter_bugly copied to clipboard

android postException 没有传递crash_data数据

Open OnesMobile opened this issue 1 year ago • 1 comments

private void postException(MethodCall call) { String message = ""; String detail = null; if (call.hasArgument("crash_message")) { message = call.argument("crash_message"); } if (call.hasArgument("crash_detail")) { detail = call.argument("crash_detail"); } if (TextUtils.isEmpty(detail)) return; CrashReport.postException(8, "Flutter Exception", message, detail, null);

}

OnesMobile avatar Sep 29 '24 05:09 OnesMobile