我正在为我的Android应用程序集成Google Analytics。我查看了@ Analytics网站提供的示例。
e.g。发送时间长 - >
// Build and send an Event.
t.send(new HitBuilders.EventBuilder()
.setCategory("CATEGORY_ID")
.setAction("ACTION")
.setLabel("LABEL_ID")
.setValue(1l)
.build());
e.g。在100个字符限制内发送异常 - >
// Build and send exception.
t.send(new HitBuilders.ExceptionBuilder()
.setDescription("EXCEPTION_DESCRIPTION<100_CHARS")
.setFatal(isFatal)
.build());
我想通过将它们发送到Google Analytics来跟踪几个错误日志。 那么有没有办法发送长度为&#39;长度的Java字符串。 &GT;分析有100个字符?