-
Notifications
You must be signed in to change notification settings - Fork 72
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
Support all devices #179
base: master
Are you sure you want to change the base?
Support all devices #179
Conversation
Support API +30 like A10 and etc.
Add MANAGE_EXTERNAL_STORAGE permission to Support 30+ Android APIs File Picker
Thank a lot @Omar-D, Please allow me sometime to check and merge the same |
You'r welcome sir, |
have you checked it sir? |
Copilot
AI
left a comment
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.
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 suggestion.
Files not reviewed (1)
- app/src/main/AndroidManifest.xml: Language not supported
Intent intent = new Intent(Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION); | ||
intent.setData(Uri.parse("package:" + getContext().getPackageName())); | ||
startActivity(intent); | ||
} catch (Exception e) { |
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.
Catching a generic Exception is not a best practice. Consider catching specific exceptions to improve debugging and maintenance.
} catch (Exception e) { | |
} catch (ActivityNotFoundException e) { |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
I have made an edit on a little part of code to Support 30+ Android APIs
Thanks in Advance
All my Regards