flutter_bugly
flutter_bugly copied to clipboard
android postException 没有传递crash_data数据
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);
}