I'm solving this kind of problem in following way:
I have 3 different activities: basic, production and development, like:
public class BasicActivity extends Activity {} //actually conntains all code
public class ProductionActivity extends BasicActivity {} //empty one
public class DevelopmentActivity extends BasicActivity {} //empty one
Then there are 2 different
manifests, say: production (points
to ProductionActivity as
launchable and has different
package) and development (points to
DevelopmentActivity as launchable)
When I need to start Production one - I used to copy production manifest (with ant task) as real one and vice-versa with development one.
There's small complication with resources compiling since R.class has to be in the same package as declared in manifest. But again with some "handmade" anting I have mamaged to solve this problem also.