can't upload apk: READ_EXTERNAL_STORAGE with different maxSdkVersions

◇◆丶佛笑我妖孽 提交于 2019-12-01 08:33:58

I still don't know why it is happening, but it looks like that there was something inside a library (even if i checked their manifest).
Anyway the solution for me was to delete the permission of the library declaring in my manifest:

<uses-permission
    android:name="android.permission.READ_EXTERNAL_STORAGE"
    tools:node="remove"
    tools:selector="com.aviary.android.feather.sdk" />

Evverything works fine, even if there is no "maxsdkversion" declared in that library manifest.

Including android.permission.READ_EXTERNAL_STORAGE resolves the problem

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!