gpt4 book ai didi

ios - 由于错误而无法加载模块并且未调用 `AppRegistry.registerComponent`。[ios,xcode]

转载 作者:行者123 更新时间:2023-12-05 00:23:07 24 4
gpt4 key购买 nike

我在 react native 中有 android 和 ios 应用程序,它们都使用 webview 将网页显示为应用程序。
由于我必须更改包名称才能将其部署在 google play 上,因为第一个包名称已被占用。我更改了 app.json 文件和 android 文件夹中的所有名称,没关系。
现在我的问题是我需要在我的 ios 文件夹中更改什么,以便我的应用程序在 xcode 中工作。我有这个错误。

Invariant Violation: "RestApp" has notbeen registered. This can happen if:

  • Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
  • A module failed to load due to an error and AppRegistry.registerComponent wasn't called.

这是我的 app.json 文件
{
"name": "restapphhopp",
"displayName": "RestApphhopp"
}
索引.js 文件
/**
* @format
*/

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

AppRegistry.registerComponent(appName, () => App);

最佳答案

这里的问题是 姓名 您正在为您的应用使用

Invariant Violation: "RestApp" has not been registered. This can happen if:

Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
A module failed to load due to an error and AppRegistry.registerComponent wasn't called.
您的索引文件正在使用 应用名称 来自 app.json 姓名 注册您的组件的字段,在您的情况下是 “名称”:“restapphhopp”
更改您的 模块名称 在 ios AppDelegate.m 文件中到 重新下载
moduleName:@"restapphhopp"

关于ios - 由于错误而无法加载模块并且未调用 `AppRegistry.registerComponent`。[ios,xcode],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64167281/

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