Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我默认启用 BugSense,但我正在寻找一种在运行时禁用 BugSense 的简单方法,以防我的用户不希望发送错误报告。
希望有喜欢的acra.disable 东西
acra.disable
只要它是单行,我就使用类似的东西:
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this); if (preferences.getBoolean(PREFERENCE_BUGS, true)) { BugSenseHandler.setup(this, myBugsenseKey); }
但这需要重新启动应用程序才能工作。