Can't installe 2 apps on my D2 Bravo Titanium

Hi
I successfully installed my first homemade app but when I try to install a second one it is not working : it deletes the previous one ! I tried by installing directly from Eclipse and by copying the .prg file from a local drive.
Thanks for your advice.
Jérôme
  • Former Member
    Former Member over 8 years ago
    I've moved this thread from the bug reports forum because it does not fit the criteria required for that forum.
    Bug Reports Forum Rules

    I think the most likely reason for what you are seeing is that you copied your project, and the two apps you are attempting to install have the same manifest ID. This will cause the device to consider them to be the same app, and will install the second as a replacement of the first. If you change the manifest ID of your second app they should both install simultaneously.
  • I've moved this thread from the bug reports forum because it does not fit the criteria required for that forum.
    Bug Reports Forum Rules

    I think the most likely reason for what you are seeing is that you copied your project, and the two apps you are attempting to install have the same manifest ID. This will cause the device to consider them to be the same app, and will install the second as a replacement of the first. If you change the manifest ID of your second app they should both install simultaneously.


    Correct ! Many thanks. I thought I should not edit the manifest because the sdk would take care about it...
  • Former Member
    Former Member over 8 years ago
    In general, you definitely should not edit the manifest file. If you use the SDK to generate a new project, it will be assigned a random ID, and the odds of a collision are effectively 0. However, if you copy your project, the ID will be copied along with it, so you will have to modify the ID manually in that case.