We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tried to use in a service, but callback has never being called, as well as no notifications were shown
@Override public int onStartCommand(final Intent intent, final int flags, final int startId) { Log.d(LOG_TAG, "onStartCommand, action = " + intent.getAction()); PermissionEverywhere.getPermission(this, new String[]{android.Manifest.permission.ACCESS_COARSE_LOCATION, android.Manifest.permission.ACCESS_FINE_LOCATION}, REQ_CODE, getString(R.string.app_name), getString(R.string.location_permission_required), R.drawable.icon) .enqueue(new PermissionResultCallback() { @Override public void onComplete(PermissionResponse permissionResponse) { // NEVER called Log.d(LOG_TAG, "onComplete. granted = " + permissionResponse.isGranted()); } }); return START_STICKY; }
The text was updated successfully, but these errors were encountered:
same here
Sorry, something went wrong.
No branches or pull requests
Tried to use in a service, but callback has never being called,
as well as no notifications were shown
The text was updated successfully, but these errors were encountered: