Changing java package name

In the Corona Simulator, I first built my app with the following java package name: com.mydebugname.myapp

I just rebuilt it with a different package name: com.myrelease.myapp

When I install it on a device, it is installing as a new app, not updating the existing one. The change in package name means it is seen as a new app.

Is there a way around this? I’d like to change the package name (the debug name is NOT appropriate for a release version).

The package name should always stay the same for the same app. You don’t have a debug version and a release version. Now for the keystore, you have a different keystore for debugging and a keystore for release.

The package name determines unique apps on the device. Two apps with the same package name will overwrite each other. With different package names, you get multiple copies.

Rob

The package name should always stay the same for the same app. You don’t have a debug version and a release version. Now for the keystore, you have a different keystore for debugging and a keystore for release.

The package name determines unique apps on the device. Two apps with the same package name will overwrite each other. With different package names, you get multiple copies.

Rob