expo图像选择器android 13无法访问所有相册

问题描述 投票:0回答:1

Android 13 的新版本似乎不再像以前那样通过 launchImageLibrary 授予对每个文件夹的访问权限。 我可以做什么来访问图库中的所有专辑。 寻求帮助

react-native
1个回答
0
投票

从文档中找到了这对我的案例有帮助。

const result = await ImagePicker.launchImageLibraryAsync({
  ...
  // Uses the legacy image picker on Android. This will allow media to be selected from outside the users photo library.
  lecacy: true
})
© www.soinside.com 2019 - 2024. All rights reserved.