我的应用不需要阅读手机状态,因此我想从我的本机应用中删除权限。
每当我从项目的任何地方删除它时,当我运行./gradlew assembleRelease
如何让它停止添加?
答案 0 :(得分:13)
使用android清单合并
添加新文件android/app/src/release/AndroidManifest.xml
内容
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
>
<uses-permission android:name="android.permission.READ_PHONE_STATE" tools:node="remove"/>
</manifest>
完成!有关清单合并的更多信息:https://developer.android.com/studio/build/manifest-merge.html#merge_priorities,合并优先级