Skip to content

Merabet4mine/Permify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Permify

Easily handle runtime permissions in android

Permify (Android Runtime Permission Library)

Permify is a wrapper library to simplify basic system permissions logic (Easily handle runtime permissions in android).

  • Very short code.
  • Can check multiple permissions at once.
  • Light weight (4 KB).
  • Open source and fully customizable.

Usage:

First declare your permissions in the manifest. Example:

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

Single permission:

Permify(activity) // initialization
Permify[Permission.CAMERA] // Boolean

Multiple permissions:

Permify(activity) // initialization
Permify[Permission.CAMERA, Permission.READ_EXTERNAL_STORAGE, ....] // Boolean

Screenshot_cases

About

Easily handle runtime permissions in android.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published