Change build name from android project using cordova

I developed a mobile application using cordova, and I had a little problem with the Android project when I build the project. When I install the application on my phone, it displays correctly, but the assembly name is always CordovaApp.apk.

Exp:

PhoneName: MyApp

Assembly: CordovaApp.apk

I tried changing the project name in the build.xml file, but it was added to the assembly again.

<project name="MyApp" default="help">

Is there a way to change the assembly name?

Thank.

+4
source share
2 answers

You should change it in the project configuration file (/www/config.xml), and not in the assembly file.

0
source
0

All Articles