You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@OverRide
public void onRequestPermissionsResult(int requestCode, @nonnull String[] permissions, @nonnull int[] grantResults) {
if (mAction.getPermissionListener() != null) {
Bundle mBundle = new Bundle();
mBundle.putInt(KEY_FROM_INTENTION, mAction.getFromIntention());
mAction.getPermissionListener().onRequestPermissionsResult(permissions, grantResults, mBundle);
}
resetAction();
}
com.just.agentweb.AgentActionFragment.onRequestPermissionsResult
java.lang.NullPointerException - Attempt to invoke virtual method 'com.just.agentweb.AgentActionFragment$b com.just.agentweb.c.e()' on a null object reference
mAction.getPermissionListener()可能为空,需要判断一下
The text was updated successfully, but these errors were encountered:
@OverRide
public void onRequestPermissionsResult(int requestCode, @nonnull String[] permissions, @nonnull int[] grantResults) {
if (mAction.getPermissionListener() != null) {
Bundle mBundle = new Bundle();
mBundle.putInt(KEY_FROM_INTENTION, mAction.getFromIntention());
mAction.getPermissionListener().onRequestPermissionsResult(permissions, grantResults, mBundle);
}
resetAction();
}
com.just.agentweb.AgentActionFragment.onRequestPermissionsResult
java.lang.NullPointerException - Attempt to invoke virtual method 'com.just.agentweb.AgentActionFragment$b com.just.agentweb.c.e()' on a null object reference
mAction.getPermissionListener()可能为空,需要判断一下
The text was updated successfully, but these errors were encountered: