Skip to content

HelpfulUtils

Jacob Rein edited this page May 5, 2020 · 16 revisions

implementation 'com.github.jakepurple13.HelpfulTools:helpfulutils:{version}'

There are lots of utilities here. These are ones that don't fit into the other categories but aren't considered "fun".

Permissions

requestPermissions(Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE) {
    println(it.isGranted)
    println(it.grantedPermissions)
    println(it.deniedPermissions)
}
Clone this wiki locally