如何将应用程序使用情况和错误报告发送到 Google 文档?

发布于 2024-10-03 01:59:08 字数 316 浏览 4 评论 0原文

昨天我与一位 Android 应用程序开发人员交谈了几分钟,他向我展示了一个非常酷的功能:直接在 Google 电子表格内报告自动应用程序崩溃报告。基本上,他使用某种复活节彩蛋故意使应用程序崩溃,然后访问他的 Google 文档帐户,果然,错误报告就在那里。

据我了解,每次应用程序崩溃时,他基本上都会向某个 Google 服务器(我想回想一下 spreadsheet.google.com 或类似的东西)执行 HTTP POST,然后他就会获得所需的所有信息。

他使用的是什么 Google API(如果有)?如果不涉及 API,您如何知道如何格式化和编码您的帖子?

I talked yesterday to an Android app developer for a few minutes and he showed me a really cool feature: automated app crash reports reported directly inside a Google spreadsheets. Basically he made the app crash on purpose using some kind of easter eggs, then went on his Google docs accounts and, sure enough, the bug report was there.

From what I understood he's basically doing an HTTP POST to some Google server (I think to recall spreadsheet.google.com or something like that) everytime an app crashes and he gets all the info he needs.

What Google API, if any, was he using? If no API is involved, how do you know how to format and encode your post?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦巷 2024-10-10 01:59:08

这可能就是您正在寻找的内容 - ACRA(Android 应用程序崩溃报告)http://code.google .com/p/acra/

This might be what you are looking for - ACRA (Application Crash Report for Android) http://code.google.com/p/acra/

別甾虛僞 2024-10-10 01:59:08
  1. 监控应用活动:Google Analytics for Android

  2. 收集 Android 日志:采取查看 SendLogActivity

  3. 上传到 Google 文档: 文档列表 API电子表格 API

  4. 捕获崩溃:设置 默认未捕获异常处理程序。重要提示:完成后调用 System.exit()。

  1. Monitoring app activity: Google Analytics for Android

  2. Collecting Android logs: take a look at inner class CollectLogTask in SendLogActivity

  3. Uploading to Google Docs: Docs List API or Spreadsheet API

  4. Catching crashes: set default uncaught exception handler. Important: call System.exit() when you're done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文