-
Notifications
You must be signed in to change notification settings - Fork 760
New issue
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
fix Android 13 write permissions #581
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -593,14 +593,17 @@ private void getReadPermission(String rawArgs, int action, CallbackContext callb | |||||||||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { | ||||||||||||
PermissionHelper.requestPermissions(this, requestCode, | ||||||||||||
new String[]{Manifest.permission.READ_MEDIA_IMAGES, Manifest.permission.READ_MEDIA_VIDEO, Manifest.permission.READ_MEDIA_AUDIO}); | ||||||||||||
} else { | ||||||||||||
} else { | ||||||||||||
PermissionHelper.requestPermission(this, requestCode, Manifest.permission.READ_EXTERNAL_STORAGE); | ||||||||||||
} | ||||||||||||
} | ||||||||||||
} | ||||||||||||
|
||||||||||||
private void getWritePermission(String rawArgs, int action, CallbackContext callbackContext) { | ||||||||||||
int requestCode = pendingRequests.createRequest(rawArgs, action, callbackContext); | ||||||||||||
PermissionHelper.requestPermission(this, requestCode, Manifest.permission.WRITE_EXTERNAL_STORAGE); | ||||||||||||
int requestCode = pendingRequests.createRequest(rawArgs, action, callbackContext); | ||||||||||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { | ||||||||||||
} else { | ||||||||||||
PermissionHelper.requestPermission(this, requestCode, Manifest.permission.WRITE_EXTERNAL_STORAGE); | ||||||||||||
} | ||||||||||||
} | ||||||||||||
|
||||||||||||
private boolean hasReadPermission() { | ||||||||||||
|
@@ -614,7 +617,11 @@ private boolean hasReadPermission() { | |||||||||||
} | ||||||||||||
|
||||||||||||
private boolean hasWritePermission() { | ||||||||||||
return PermissionHelper.hasPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE); | ||||||||||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { | ||||||||||||
return true; | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just to explain why we are returning true for future contributors/code maintainers |
||||||||||||
} else { | ||||||||||||
return PermissionHelper.hasPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE); | ||||||||||||
} | ||||||||||||
} | ||||||||||||
|
||||||||||||
private boolean needPermission(String nativeURL, int permissionType) throws JSONException { | ||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can be rewritten as to invert the condition so we don't have an empty code block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getWritePermission
is already wrapped by a condition that requiresneedPermission
to betrue
, before it is called.needPermission
should then hit this condition:Which should
return false
once thehasWritePermission
method is fixed.I think the only changes needed in this PR should be:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@EYALIN Can you review the above messages and make the updates?
I believe you do not need to modify the
getWritePermission
method, as I previously mentioned the reasons why.Only
hasWritePermission
needs to be updated. The code could be simplified with what I provided in my previous message.Also, can you rebase your branch against with Cordova's main branch? There are conflicts.
And include Norman's suggestion about including a comment explaining about the
true
return.