Status Update
Comments
do...@gmail.com <do...@gmail.com> #3
Thanks for the report!
he...@gmail.com <he...@gmail.com> #4
The release notes documentation has been edited to clarify this change in behavior for line height.
To support non-standard text sizes, we encourage users to follow the Material design system and use a different style = LocalTextStyle.current.copy(lineHeight = TextUnit.Unspecified)
, or create a custom Typography
entirely.
do...@gmail.com <do...@gmail.com> #5
ol...@gmail.com <ol...@gmail.com> #6
In my case, I have multiple font sizes in the same Text
(using SpanStyle
in AnnotatedString
). There are legitimate reasons for this. For example, when combining Chinese and English (phonetic) together (for language-learning purposes).
se...@gmail.com <se...@gmail.com> #7
ra...@gmail.com <ra...@gmail.com> #8
Same issue. java.io.IOException: Permission denied
while writing files.
he...@gmail.com <he...@gmail.com> #9
The issue is pending for almost an year, now Wear OS 5 is also getting launched in a month. Will this issues be fixed at all?
he...@gmail.com <he...@gmail.com> #10
Any updates for this?
to...@gmail.com <to...@gmail.com> #11
to...@yahoo.com <to...@yahoo.com> #12
the same issue exists for Android TV.
Given this bug is from 2023 should we presume Google does not support TV/Wear MANAGE_ALL_FILES_ACCESS_PERMISSION at all?
Description
Component used: java.io.File Version used: OS 13 Devices/Android versions reproduced on: Wear OS 4 / Developer preview emulator
Storage permissions are not working for any app. This was working fine in Wear OS 3 (OS 11). Both External Storage permission and All files access dont work, which should work based on these docs. This works without an issue on Phones and TV with OS13https://developer.android.com/training/data-storage/manage-all-files
Case 1: All file acccess: App: TargetSdkVersion 33 Status: Doesnt work on Wear OS 4
When i try to get all file access, the app crashes
Case 2: External Storage permission App: TargetSdkVersion 33 Status: Doesnt work on Wear OS 4 When i try to get external storage permission, the app doesnt show any permissions dialog. Even when manually giving file access permission from Apps & notifications >. App Info > App > Permissions > Files, it still doesn't work.
Case 3: External Storage permission App: TargetSdkVersion 32 Status: Doesnt work on Wear OS 4 When i try to get external storage permission, the ap[ shows a permissions dialog. I can grant permission. When i try to create a directory, it fails.
Case 4: External Storage permission App: TargetSdkVersion 29 Status: Works on Wear OS 4 When i try to get external storage permission, the app shows a permissions dialog. I can grant permission. When i try to create a directory, it works.
Unfortunately, Playstore doesnt allow wear os apps to be have target version below 31, so cant release app which needs file storage access. This i believe breaks the storage completely on wear OS 4.
Sample project:https://github.com/1hakr/ManageExternalStorage