May I? - Android Runtime-Permission library
MayI is yet another library that simplifies the process of requesting permissions at runtime for devices that run Android Marshmallow and above.
As of Androids Marshmallow and above a new functionality has been added that lets users grant or deny permissions while an app is running instead of granting them all
together when installing it. This approach gives the user more control over applications but requires developers to add lots of code to support it.
This library aims to reduce boilerplate code needed to request permissions at runtime by featuring a simple chainable API designed the way I want it.
Screenshot
Dependency
Add the following to your app module build.gradle
file
dependencies {
implementation 'com.thanosfisherman.mayi:mayi:<latest-version-number-here>'
}
Usage
Single Permission
To request a single permission using this library, you just need to call MayI
with a valid Activity
and use withPermission
method:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState: Bundle?)
MayI.withActivity(this)
.withPermission(Manifest.permission.READ_CONTACTS)
.onResult(this::permissionResultSingle)
.onRationale(this::permissionRationaleSingle)
.check()
}
permissionResultSingle
and permissionRationaleSingle
could be custom-defined methods of your own that would deal accordingly in each situation. For Example:
private fun permissionResultSingle(permission: PermissionBean) {
Toast.makeText(this, "PERMISSION RESULT $permission", Toast.LENGTH_LONG).show()
Log.i("MainActivity", "PERMISSION RESULT $permission")
}
private fun permissionRationaleSingle(bean: PermissionBean, token: PermissionToken) {
Toast.makeText(this, "Should show rationale for " + bean.simpleName + " permission", Toast.LENGTH_LONG).show()
Log.i("MainActivity", "Should show rationale for ${bean.simpleName}")
token.skipPermissionRequest()
}
Multiple Permissions
Similarly to request multiple permissions at once, you just need to call Mayi
with a valid Activity
but this time use withPermissions
method to specify more than one permissions. Furthermore
the lambda expressions from the example above could be replaced with method references like so:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState: Bundle?)
MayI.withActivity(this)
.withPermissions(Manifest.permission.READ_CONTACTS, Manifest.permission.ACCESS_FINE_LOCATION)
.onRationale(this::permissionRationaleMulti)
.onResult(this::permissionResultMulti)
.onErrorListener(this::inCaseOfError)
.check()
}
}
Again possible custom-defined methods for the above example could be something like:
private fun permissionResultMulti(permissions: List<PermissionBean>) {
Toast.makeText(this, "MULTI PERMISSION RESULT $permissions", Toast.LENGTH_LONG).show()
Log.i("MainActivity", "MULTI PERMISSION RESULT $permissions")
}
private fun permissionRationaleMulti(permissions: List<PermissionBean>, token: PermissionToken) {
Toast.makeText(this, "Rationales for Multiple Permissions $permissions", Toast.LENGTH_LONG).show()
Log.i("MainActivity", "Rationales for Multiple Permissions $permissions")
token.continuePermissionRequest()
}
Error handling
If you think there is going to be an error in your Mayi integration, just call a onErrorListener
:
MayI.withActivity(this)
.withPermissions(Manifest.permission.READ_CONTACTS, Manifest.permission.ACCESS_FINE_LOCATION)
.onRationale(this::permissionRationaleMulti)
.onResult(this::permissionResultMulti)
.onErrorListener(this::inCaseOfError)
.check()
private fun inCaseOfError(e: Exception) {
Toast.makeText(this, "ERROR $e", Toast.LENGTH_SHORT).show()
Log.e("MainActivity", "ERROR $e")
}
The library will then notify you when something unexpected happens.
Library Flow
- The first time this library runs, system permission promt will appear asking for the user to either deny or allow the permission.
NextonResult()
method will be called that includes the result of the user’s choice. - If user denied the permission the first time (but didn’t check “don’t ask again” option) then
onRationale
will be the first method to be called next
time this library runs. InsideonRationale
method you now have 3 options.- Call
token.continuePermissionRequest()
method which shows again system dialog prompt and then callsonResult()
that includes the user’s choice. - Call
token.skipPermissionRequest()
method which will skip showing system dialog prompt and immediately callonResult()
that includes the user’s choice. - Call none of the 2 above thus terminating the flow after
onRationale
finishes its execution.
- Call
- If user denied the permission by checking “don’t ask again” then
onResult()
will be called that includes the result of the user’s choice. You may check whether the permission has been permanently denied via thePermissionBean#isPermanentlyDenied()
method which is included in theonResult()
.
below is a flow chart that visualizes the library’s flow described above.
Contributing?
Feel free to add/correct/fix something to this library, I will be glad to improve it with your help.
License
Copyright 2018 Thanos Psaridis
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.