Skip to content

Commit

Permalink
权限申请bug修复
Browse files Browse the repository at this point in the history
  • Loading branch information
wandersnail committed Nov 20, 2024
1 parent 6fb7283 commit 959df93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'signing'

def lib_version = '1.4.1'
def lib_version = '1.4.2'
def user_name = 'wandersnail'
def lib_group = 'cn.wandersnail'
def lib_artifact = 'commons-android'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected boolean checkPermissions(List<String> permissions, boolean onlyCheck)
requestOtherPermissions(needRequestPermissonList);
return false;
} else {
if (callback != null && checking) {
if (callback != null) {
callback.onRequestResult(refusedPermissions);
}
checking = false;
Expand Down

0 comments on commit 959df93

Please sign in to comment.