如何在我的 android phone 上安装我的 ionic 应用程序?
How can I install my ionic app on my android phone?
我正在尝试在我的 android phone 上安装我的离子应用程序。我试过了
install my ionic app on my android phone
我的 phone 上的应用程序 运行,但是当我 运行 对 运行 另一个应用程序执行相同的命令时,该应用程序在我的手机上被替换了。我怎样才能同时保留两者?我不打算修改这些应用程序中的任何一个,它们已经准备就绪。我也尝试了这些命令:
ionic cordova build android --prod --release
和
ionic cordova run android --prod --release
我收到此错误消息:
[ERROR] An error occurred while running cordova run android --release
(exit code 1)
默认会覆盖之前的版本。您可以使用以下方式保留这两个应用程序:
检查config.xml
文件,并更改应用程序的id
。
<widget id="new.app.id" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
现在,它将被视为不同的应用程序,不会取代之前的应用程序。
我正在尝试在我的 android phone 上安装我的离子应用程序。我试过了
install my ionic app on my android phone
我的 phone 上的应用程序 运行,但是当我 运行 对 运行 另一个应用程序执行相同的命令时,该应用程序在我的手机上被替换了。我怎样才能同时保留两者?我不打算修改这些应用程序中的任何一个,它们已经准备就绪。我也尝试了这些命令:
ionic cordova build android --prod --release
和
ionic cordova run android --prod --release
我收到此错误消息:
[ERROR] An error occurred while running cordova run android --release (exit code 1)
默认会覆盖之前的版本。您可以使用以下方式保留这两个应用程序:
检查config.xml
文件,并更改应用程序的id
。
<widget id="new.app.id" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
现在,它将被视为不同的应用程序,不会取代之前的应用程序。