A lightweight Android library which wraps boilerplate code of runtime permission and allows you to request permissions
- from coroutines. (No callbacks yay 🎉)
- request and observe permissions through LiveData.
- through clean and concise Kotlin DSL.
From release
2.0.0
onwards library is migrated to AndroidX. If you are still using support library and haven"t migrated to AndroidX then check out non-androidX version of the library.
Eazy permissions is available in the Jcenter and divided into three modules so that based on your need you can include either coroutines or livedata or Kotlin DSL support in your project
//For coroutines
implementation "com.sagar:coroutinespermission:[latest_version]"
//For LiveData
implementation "com.sagar:livedatapermission:[latest_version]"
//For Kotlin DSL
implementation "com.sagar:dslpermission:[latest_version]"
Have suggestions for improvements and want to contribute? or Found any issues?
Head over to Contribution guidelines to know more about contributing to this library.
Copyright 2019 Sagar Viradiya
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.