Do I need to change the package name for the free version of my app?
Posted
by
teedyay
on Stack Overflow
See other posts from Stack Overflow
or by teedyay
Published on 2011-03-04T15:19:14Z
Indexed on
2011/03/04
15:25 UTC
Read the original article
Hit count: 212
android
I have an application that I'm going to publish to the Android market. I'm planning on releasing a paid-for version and a free version with restricted feature set.
During development I've ensured I can turn features on and off by setting a few constant values, so I only have one codebase.
However, now I come to release I'm not clear if I need to make a copy of the app with a different package name for the free version.
The documentation on how the market works say updates will only be recognised if they have the same package name and are signed with the same key. Does this mean it's OK to release two applications with the same package name but signed with different keys, or will this break something? Or is it just bad practice?
© Stack Overflow or respective owner