0

当我运行离子电容器运行android时,我试图从我的android服务中的firebase获取数据,但我一直不确定。但是,当我运行 ionic serve 时,我可以在网络浏览器上很好地获取数据。任何人都可以请教我吗?这几天我一直在为此苦苦挣扎。

4

1 回答 1

0

奇怪,我有一个 Angular 应用程序,它使用 firebase 和电容器来制作一个 android 应用程序,它从来没有给我带来任何问题。这是我做它时的笔记。你错过了下面的东西吗??:

在终端中运行: npm install --save @capacitor/core @capacitor/cli

然后运行这个命令:npx cap init

注意:确保 angular.json 文件中的 outputPath 与电容器.config.json 文件中的 webDir 匹配。我将它们都设置为“www”。还要确保在电容器.config.json 文件中,bundledWebRuntime = “false”。

ng build --prod

npx cap serve(你说它在这一点上工作,所以我认为到目前为止一切都很好)

然后在终端中运行这 3 个命令:

npx 上限添加 android

npx cap 复制 android

npx cap 打开 android

于 2019-04-29T21:44:36.650 回答