如何使用 Ionic 在 android 台设备上安装两个不同的应用程序

How to install two different app on android device using Ionic

我正在使用以下命令在 android 设备上安装应用程序。

"ionic cordova run android"

但是当我安装另一个应用程序时,它正在替换旧应用程序。

所以请告诉我解决方案,这样旧应用和另一个新应用都应该在 android 设备

请检查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">

这样,它将被视为不同的应用程序,不会取代之前的应用程序。