Reputation: 37721
When I compile my app for release, a new permission called USE_CREDENTIALS is being added to my manifest.
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
Why? What is this permission? I can't find any official info about it on Android Developers' guide!
Upvotes: 12
Views: 14403
Reputation: 1007474
Why?
You are probably getting it via some library that you are using.
What is this permission?
It is used, prior to Android 6.0, for using things like AccountManager
.
i can't find any official info about it on android developers guide!
That is because Google got rid of this permission in Android 6.0, and the documentation at http://developer.android.com does a really poor job of dealing with removed API elements.
Upvotes: 26