构建 xcode 项目时“无法加载 SENTRY_PROPERTIES (sentry.properties) 引用的文件”

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

在 xcode 中构建 React-Native 项目时出现此错误。更多:

Run custom shell script 'Bundle React Navive code and images'
...
error: Failed to load file referenced by SENTRY_PROPERTIES (sentry.properties)
  caused by: Operation not permitted (os error 1)
thread 'main' panicked at 'Config not bound yet': src/config.rs:87

...但是

sentry.properties
在我的项目的
/ios
目录中存在并且可读

xcode react-native
1个回答
0
投票

我需要关闭项目“构建设置”中的

ENABLE_USER_SCRIPT_SANDBOXING
(左栏工具栏中的文件夹图标;单击项目名称,在主面板中选择“构建设置”,然后滚动到“构建选项”下的它)。

显然这个沙箱阻止了对 /ios 中的sentry.properties 文件的访问。

© www.soinside.com 2019 - 2024. All rights reserved.