What is the difference between Uses-Permission
and Permissions
tag in AndroidManifest.xml .
I understood uses-permission
Quoting the documentation:
To enforce your own permissions, you must first declare them in your
AndroidManifest.xml
using one or moretags. For example, an application that wants to control who can start one of its activities could declare a permission for this operation as follows:
Hence,
is when your application is seeking the user's permission to use some feature, while
is when your application is requiring other apps to seek the user's permission to use some feature of yours.