once10301 / permission

Other
66 stars 58 forks source link

iOS - MissingPluginException(No implementation found for method getPermissionStatus ) #5

Closed mi0772 closed 5 years ago

mi0772 commented 5 years ago

Hi when this method will be implemented ?

thanks for your great work

ppsdang commented 5 years ago

I am facing the same issue

apgapg commented 5 years ago

The developer missd the implementation for singlepermission in andorid code. Use Permission.requestPermissions method and access the first element of the result

once10301 commented 5 years ago

Android

val permissions = await Permission.getPermissionStatus([PermissionName.Calendar, PermissionName.Camera]);

iOS

val permissionStatus = await Permission.getSinglePermissionStatus(PermissionName.Calendar);

once10301 commented 5 years ago

Multiple permissions can be applied together on Android, but only one permission can be applied on iOS.