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.
source
share