What is difference between permission and uses-permission in Android?
Ashish Tiwari
Select an image from your device to upload
When creating a custom permission, such as an app that other apps can integrate with, it is essential to limit access.Use -permission when your software requires a permission it typically does not have.
flash games
permission is normally used when making a custom permission e.g. when making an app that other apps can tie in to, limiting access is a must.uses-permission is used when your app actually needs a permission it doesn’t have normally.
permission is normally used when making a custom permission (e.g. when making an app that other apps can tie in to, limiting access is a must), and uses-permission is used when your app actually needs a permission it doesn’t have normally.