gpt4 book ai didi

ios - 用于使用 expo SDK react native ios 应用程序的 Info.plist 文件

转载 作者:可可西里 更新时间:2023-11-01 06:18:20 26 4
gpt4 key购买 nike

我希望正确格式化 Info.plist 文件,以便使用 react-native-in-app-utils 进行应用内购买,但我不确定如何格式化数据以及要使用哪种数据插入。

该线程提到了在 Info.plist 文件中包含应用程序包 ID 的必要性。

iOS in app purchase - no products received

最佳答案

如果您使用的是 expo,它不会向您公开整个 info.plist

世博会解决方法

您可以在 app.json 中添加一个对象作为 ios 对象的子对象,如下所示:

"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to scan barcodes on event tickets."
},

这将写入 native 级别,但这是有限的。这是您在使用 expo 时可以访问的所有 key 的列表

<key>NSCameraUsageDescription</key>
<string>Allow Expo experiences to use your camera</string>
<key>NSContactsUsageDescription</key>
<string>Allow Expo experiences to access your contacts</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Allow Expo experiences to use your location</string>
<key>NSMicrophoneUsageDescription</key>
<string>Allow Expo experiences to access your microphone</string>
<key>NSMotionUsageDescription</key>
<string>Allow Expo experiences to access your device's accelerometer</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Give Expo experiences permission to save photos</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Give Expo experiences permission to access your photos</string>

查看expos官方文档here

React-native 初始化

如果您需要对项目进行更多底层访问,请考虑使用 react-native init MyProject 而不是 create-react-native-app MyProject

这将为您提供对所有 ios 和 android 包的完全访问权限。

React-native 弹出

或者,如果您已经通过 create-react-native-app MyProject 构建了您的应用程序,您可以运行 react-native eject 来获取 react- native-init MyProject.

请注意,此命令执行后不会返回。

关于ios - 用于使用 expo SDK react native ios 应用程序的 Info.plist 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48157185/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com