gpt4 book ai didi

javascript - 重命名 React Native 示例应用程序

转载 作者:行者123 更新时间:2023-11-29 00:47:19 25 4
gpt4 key购买 nike

所以我正在尝试从这个示例应用程序开始工作:

https://github.com/aksonov/react-native-router-flux/tree/master/Example

但是当我重命名以下几行时:

index.ios.js

import App from './App';
AppRegistry.registerComponent('App', () => App);

index.android.js

import App from './App';
AppRegistry.registerComponent('App', () => App);

我已将 Example.js 重命名为 App.js 并更新了内容:

class App extends Component {
render() {
return (
<Router createReducer={reducerCreate} getSceneStyle={getSceneStyle}>
//...
</Router>
);
}
}

export default App;

但是当我尝试编译应用程序时,我收到以下错误。

Application Example has not been registered.
This is either due to a require() error during initialisation or failure to call AppRegistery.registerComponent.

最佳答案

  1. 更改package.json中的name属性
  2. 运行 react-native 升级
  3. 更改您的 Appregistry AppRegistry.registerComponent('MyApp', () => MyApp);

关于javascript - 重命名 React Native 示例应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38477020/

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