Is READ_LOGS a normal or dangerous Android permission?
都不是.从Android 7.1开始,它是签名|开发.这基本上意味着作为固件构建的一部分签名或安装在特权分区上的应用程序可以保留权限,但没有其他任何内容可以.
the Android Documentation website does not specify the protection level of this permission
正确. READ_LOGS仍然在SDK中,出于向后兼容的原因,但自Android 4.1(five years ago出来)以来普通应用程序无法容纳它.
This only happens if the permission is deemed “normal”,in which case it is automatically granted.
没有.
I thought this permission may allow me to see other app’s logs,causing privacy issues.
在Android 4.0及更早版本中它确实如此.
then is it deemed safe to use this permission in a production version of the app?
好吧,请记住,应用程序访问LogCat内容从未有过记录和支持的方式.最有可能的是,您正在使用已发布的script-kiddie解决方案之一,例如运行logcat命令并捕获其输出.因此,现在或将来的设备完全有可能不支持您访问LogCat的特定方法.所以,许可不是你的问题;缺少支持的LogCat访问API是您的问题.
就个人而言,我会使用日志库将内容记录到文件和LogCat,使用该文件来满足您的应用需要.