简体   繁体   English

如何确定Android崩溃报告不会向我发送敏感的用户数据?

[英]How can I make sure that an Android crash report doesn't send me sensitive user data?

I'm developing an app for Android. 我正在为Android开发一个应用程序。 It's still in its alpha phase so I'm pretty sure that there are some bugs I haven't found yet. 它仍处于Alpha阶段,因此,我很确定还有一些我尚未发现的错误。

I'm planning to release it on the Google Play Store in a couple of weeks. 我打算在几周内在Google Play商店中发布它。 I hope that some users find bugs that I couldn't find myself. 我希望一些用户发现我找不到的错误。

I'm worried about the data that gets sent to me when users send a crash report. 我担心用户发送崩溃报告时发送给我的数据。 My app requires users to enter their username and password in a PreferenceFragment . 我的应用程序要求用户在PreferenceFragment输入其用户名和密码。 I want to make sure that I can't receive these credentials when users send such a report. 我想确保当用户发送此类报告时我不会收到这些凭据。

All other information is welcome, though. 不过,所有其他信息都欢迎。 Is there a way to exclude this data from being sent? 有没有办法排除发送这些数据?

The Stock Android crash report tool only includes the crash stack trace, an optional user message and some statistics (device, android version, application version). Stock Android崩溃报告工具仅包含崩溃堆栈跟踪,可选的用户消息和一些统计信息(设备,Android版本,应用程序版本)。 So you don't need to do something to hide user sensitive information in crash reports sent by the stock android crash report tool. 因此,您无需执行任何操作即可在由库存Android崩溃报告工具发送的崩溃报告中隐藏用户敏感​​信息。

I would recommended you to use more complex tools to catch crash reports, like Crashlytics or Bugsense. 我建议您使用更复杂的工具来捕获崩溃报告,例如Crashlytics或Bugsense。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android崩溃报告不会将数据发送到Google文档 - Android crash report doesn't send data to google docs 如果Android重新启动我的应用程序,如何确定它不会加载最新片段? - If Android restarts my app, how can I make sure it doesn't load the most recent fragment? 如何确保Android Beam无法启动我的'singleTop'活动的新实例? - How can I make sure Android Beam doesn't start a new instance of my 'singleTop' activity? Android崩溃报告不会发送到开发者控制台 - Android crash report doesn't send to developer console 用户Cloudant如何在Android中发送应用崩溃报告 - How user cloudant to send app crash report in android 用户的崩溃报告。 我该如何解决此崩溃? - Crash report from a user. How can I solve this crash? 客户设备上的Android应用程序崩溃:如果Android> 4.3出现故障,客户可以向我发送崩溃报告吗? - Android app is crashed on customer device : can customer send me crash report in case of failure on Android > 4.3? 我在 firebase 控制台中看不到 android 的崩溃报告 - i can't see crash report of android in firebase console Android Firebase 崩溃不会在第三方库(或 *.aar)中发送崩溃报告 - Android Firebase crashes doesn't send crash report in third party libs (or *.aar) Android-如何将崩溃报告发送到服务器? - Android - How to send crash report to server?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM