Hello,
I would like to know, for those who already received stock Android 11 on their Note 10/Note 10+, if the ability to disable the new "scoped storage" via ADB, on a "per-app" basis is really available and working, as described in this article:
The Storage Access Framework is the only way for apps to work with all your files in Android Q. And it’s terrible
At the bottom of the article, ADB commands for disabling / enabling scoped storage are depicted:
Disable:
adb shell cmd appops set your-package-name android:legacy_storage allow && \
adb shell am force-stop your-package-name
Enable:
adb shell cmd appops set your-package-name android:legacy_storage default && \
adb shell am force-stop your-package-name
Did someone try these ADB commands? Teoretically, with these one can fix any compatibility issue with Android 11.
Thank you.
I would like to know, for those who already received stock Android 11 on their Note 10/Note 10+, if the ability to disable the new "scoped storage" via ADB, on a "per-app" basis is really available and working, as described in this article:
The Storage Access Framework is the only way for apps to work with all your files in Android Q. And it’s terrible
At the bottom of the article, ADB commands for disabling / enabling scoped storage are depicted:
Disable:
adb shell cmd appops set your-package-name android:legacy_storage allow && \
adb shell am force-stop your-package-name
Enable:
adb shell cmd appops set your-package-name android:legacy_storage default && \
adb shell am force-stop your-package-name
Did someone try these ADB commands? Teoretically, with these one can fix any compatibility issue with Android 11.
Thank you.