latestVersion
is
kotlinLatestVersion
is
Add the following in your app's build.gradle
file:
Repository | implementation | Status |
---|---|---|
jcenter() | 'com.romellfudi.permission:fudi-permission:2.0.a' | DEPRECATED |
jcenter() | 'com.romellfudi.permission:kotlin-fudi-permission:2.0.a' | DEPRECATED |
maven { url https://jitpack.io } |
'com.github.romellfudi.FudiPermission:fudi-permission:2.0.b' | READY |
maven { url https://jitpack.io } |
'com.github.romellfudi.FudiPermission:kotlin-fudi-permission:2.0.b' | READY |
First Android need confirmation by user from version 6 , its fot that create a sample how build a Adroid permission library (jar or aar file):
Before adding the permissions which you need, check needPermissions file:
Build an callback object to catch the rsponse for user. If have 1 or more refuse permissions, onRefuse method activate, otherwise onFinally
// java
private PermissionService.Callback callback = new PermissionService.Callback() {
@Override
public void onResponse(ArrayList<String> RefusePermissions) {
// todo
}
};
// kotlin
private val callback = object : PermisionInterface {
override fun onResponse(refusePermissions: ArrayList<String>) {
if (refusePermissions!=null) {
Toast.makeText(baseContext,
"Have to allow all permissions",
Toast.LENGTH_SHORT).show()
Handler().postDelayed({ finish() }, 2000)
}
}
}
Invoke service inside at Activity/onCreate method :
// java
new PermissionService(this).request(callback);
// kotlin
PermissionService(this).request(callback)
Override onRequestPermissions method from Activity class, note if necessary use if-case sentence:
// java
@Override
public void onRequestPermissionsResult(int requestCode,
@NonNull String[] permissions, @NonNull int[] grantResults) {
callback.handler(permissions, grantResults);
}
// kotlin
override fun onRequestPermissionsResult(requestCode: Int,
permissions: Array<String>, grantResults: IntArray) {
PermissionService.handler(callback, grantResults, permissions)
}
Copyright 2018 Romell D.Z.
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.