-
Notifications
You must be signed in to change notification settings - Fork 894
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
Improvements to scoped storage #1488
Conversation
49dc608
to
b9e9512
Compare
<string name="scoped_storage_message"> | ||
بسبب تغييرات في الاندرويد، إستخدام مكان غير مكان التطبيق قد يسبب في عدم تمكن التطبيق من الوصول للملفات في الاصدارات المستقبلية لاندرويد. هل ترغب في تكملة نقل البيانات ؟ |
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.
@benomaire does this sound ok or can you suggest something better?
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.
Another variation:
بسبب القيود الجديدة في أندرويد 11، تخزين بيانات التطبيق في مكان غير مجلد التطبيق الافتراضي قد يؤدي إلى عدم تمكن التطبيق من الوصول لملفاته في إصدارات أندرويد القادمة، هل ترغب في نقل البيانات على أية حال؟
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.
جزاكم الله خيراً
b9e9512
to
046412b
Compare
@@ -343,7 +343,10 @@ | |||
<string name="import_data_error">ملف النسخة الاحتياطية تالف (أو فشلت قراءة النسخة الاحتياطية)</string> | |||
<string name="import_data_permissions_error">فشلت قراءة ملف النسخة الاحتياطية بسبب فقدان الإذن</string> | |||
<string name="please_grant_permissions">رجاء امنح الإذن في الإعدادات</string> | |||
<string name="about_noorhidayat" translatable="false">نور وهداية (Noorhidayat)</string> | |||
<string name="about_noorhidayat" translatable="false">نور هداية (Noorhidayat)</string> |
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 guessed from the url and the logo that 'e' stands for 'و' in urdu. I am not sure though!
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.
ok i'll leave it like it was
This patch updates scoped storage, making the following changes: 1. only force copying on Android 11 (sdk 30) and above. Before, this was also enabled for Android 10 (sdk 29). 2. disable the advanced settings move option to copy to /sdcard on Android 30 and above (since it doesn't make sense anymore). 3. warn people on Android 29 when they try to explicitly use /sdcard that data might not remain accessible on future Android versions. 4. show warning before asking for external sdcard permissions if required. Fixes #1478.
046412b
to
43f1b46
Compare
This patch updates scoped storage, making the following changes:
also enabled for Android 10 (sdk 29).
Android 30 and above (since it doesn't make sense anymore).
that data might not remain accessible on future Android versions.
required.
Fixes #1478.