blue2609
blue2609

Reputation: 941

Change Cordova project android package name

Does any of you know how to change the package name of an android project build with cordova?

I've tried to change the android project name by doing:

  1. Removing the android platform from the project by executing cordova platform remove android

  2. I changed the <widget id> in config.xml:

From

<widget id="com.oldName.oldName" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">

to

<widget id="com.newName.newName" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
  1. Reinstall android platform by doing cordova platform add android

 

Problem is that after I did it, I got an error when executing cordova run android:

(node:xxxxx) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): TypeError: Cannot read property 'manifest' of undefined

The only way to get rid of this error is to revert back to its original package name (and of course to re-install android platform)

I tried to google a lot but I just can't seem to find any solution that works for me. Will any of you be kind enough to enlighten me on this?

Upvotes: 7

Views: 9501

Answers (2)

Son Nguyen
Son Nguyen

Reputation: 104

You can replace the old package with a new package by replacing new package in the entire source code, then renaming the folder in the main/java directory according to the new package.

Upvotes: 1

jcesarmobile
jcesarmobile

Reputation: 53301

You can use android-packageName inside the widget tag

<widget id="com.oldName.oldName" android-packageName="com.newName.newName" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">

Upvotes: 10

Related Questions