Just declare the incriminated permission in your (main) Manifest with the

tools:node="remove"

attribute (yes, that’s exactly how we fixed it).
For example:

<uses-permission android:name=”android.permission.RECORD_AUDIO” tools:node=”remove” />

Even if another library is asking for this specific permission, the build will be forced to not merge it in your final Manifest file.

参考

相关文章:

  • 2021-10-08
  • 2021-05-07
  • 2022-12-23
  • 2021-09-05
  • 2021-11-18
  • 2022-12-23
猜你喜欢
  • 2021-04-22
  • 2022-12-23
  • 2021-04-27
  • 2022-12-23
  • 2021-11-21
相关资源
相似解决方案