为什么在博览会中构建后不起作用的本地地图是不起作用的

发布于 2025-01-21 11:22:56 字数 158 浏览 0 评论 0原文

我已经创建了一个使用EXPO CLII的React Native应用程序。在那里,我正在使用React-Native-Maps。具有Expo应用程序非常有效。但是,在构建独立应用程序后,当我尝试打开它时,它没有导航到该组件。这是指时,当我单击“位置”选项卡时,它重新启动了该应用程序。这是我的组件代码。

I have created a react native application with expo clii. In there I am using react-native-maps.With expo app It was very worked. But after building the standalone app and when I try to open it it did not navigate to that component.It mean when I click on the location tab it restart the app.This is my that component code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感悟人生的甜 2025-01-28 11:22:56

当我在我的app.json中构建应用程序中,我发现了这个问题。构建后,当我导航到组件时,该应用将崩溃。

可以通过将API密钥放入app.json中来

expo: {
  ios: {
      config: {
        googleMapsApiKey: "API_KEY_HERE",
      },
    },
    android: {
      config: {
        googleMaps: {
          apiKey: "API_KEY_HERE",
        },
      },
    },
}

修复带有google-maps“ rel =“ nofollow noreferrer”>在这里

I found this issue when I build the app without a google maps api key in my app.json. After a build, the app would crash when I navigate to the component.

Can fix by putting your api key into app.json

expo: {
  ios: {
      config: {
        googleMapsApiKey: "API_KEY_HERE",
      },
    },
    android: {
      config: {
        googleMaps: {
          apiKey: "API_KEY_HERE",
        },
      },
    },
}

Read more here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文