Reputation: 53600
Android has lots of permission as default, http://developer.android.com/reference/android/Manifest.permission.html
My question is am I able to define my own created permission? If yes how can I define and implement it?
Upvotes: 1
Views: 84
Reputation: 33545
Declaring and Enforcing Permissions
To enforce Permissions there are many functions like Context.checkCallingPermission()
, Context.checkPermission()
to check whether the Application has the specified permission.
Upvotes: 2