Skip to content Skip to sidebar Skip to footer

Android: New Permissions Added Behind My Back After Library Updates

When I uploaded a new version of my app to the Developer Console for uploading to the Play Store, the dialog that pops up with an analysis of the apk told me that I had added two n

Solution 1:

I think the new permissions came from your libraries, that you are using. If you have updated the Android Studio the libraries can changed too. Check this article.

According to the article the final manifest file is merged from your own and from the libraries' ones, you can see it at app/build/intermediates/manifests/full/debug/AndroidManifest.xml.

Solution 2:

It may have to do with libraries including manifest with your application and its being merged with your application, adding permissions(as Bendaf said). One thing you can do is take your APK and decompile it and check your code for the permission.

Post a Comment for "Android: New Permissions Added Behind My Back After Library Updates"