Phonegap build overwriting existing app

Hi Guys,

I have a few test apps on an Andriod mobile device. ( basically simple developments of a few of the sample apps)

On a couple apps when I build to phone gap and install they overwrite each other.

They have different project names and different titles.

Is there some other setting I need to check ?

Cheers

Steve Warby

Have a look at line 5 in PhoneGap configxml:

<?xml version="1.0" encoding="UTF-8"?>
<widget 
xmlns = "https://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.nsbasic.{id}"
versionCode = "1"
version = "{version}">

{id} is filled in with the name of your app and needs to be unique.

Got that thanks agin.