Unity Android平台读取文件时添加了权限依然报错“Access to the path is denied“

源自:https://blog.csdn.net/qq_33547099/article/details/110631476

如果你发布的安卓目标版本是10.0以前的,直接在AndroidManifest添加下面权限。

 

 

如果你是10.0上面的版本除了添加权限之外你还要在application 中添加

 android:requestLegacyExternalStorage=“true” 

这样才能拥有访问私有文件的权限


你可能感兴趣的:(Unity Android平台读取文件时添加了权限依然报错“Access to the path is denied“)