Hi, I can’nt download or install Microsoft RD client on any chromebook anymore. Is it no longer supported? Gr. Marco
jayekon
Nov 29, 2022Copper Contributor
John_Spencer I think i know what happened. They added camera support in this version, but didn't make it optional in the app manifest.
The app manifest added a <uses-permission name='android.permission.CAMERA'> </uses-permission> But didn't add a corressponding <uses-feature name='android.hardware.camera' required='false'> </uses-feature> <uses-feature
name='android.hardware.camera.autofocus'
required='false'> Which is necessary for anything that doesn't have a back camera, because just adding the uses-permission implies a uses-feature require=true for those features.
According to:
https://developer.android.com/topic/arc/manifest#implied-features
If you can pass that along to the team responsible please.