[android-developers] Re: Building multiple app versions for the Market

2009-02-23 Thread Jay-andro
Hi Mattaku (or anyone else who can help) I am trying a similar approach. All my code (trial and full) is in a single codebase. A set of preferences (set differently in the two versions) determine whether the app behaves as a trial or as a full app. In order to create two apk's out of this, I put

[android-developers] Re: Building multiple app versions for the Market

2009-02-23 Thread Mattaku Betsujin
I use eclipse to build apptrial, and then use 'make' to build appcore (You could use 'ant' as well). When using make, it's more flexible and I can force the R class to be generated in the appcore package. On Mon, Feb 23, 2009 at 6:52 AM, Jay-andro jayan...@gmail.com wrote: Hi Mattaku (or

[android-developers] Re: Building multiple app versions for the Market

2009-02-18 Thread Mattaku Betsujin
What I did was: Put most of the functionality in a single package, say: com.foo.appcore Then, each version of the app will be in a different package com.foo.applite com.foo.appfull In development, I put the full version in Eclipse (i.e., appcore and appfull), so it's easy to build and debug

[android-developers] Re: Building multiple app versions for the Market

2009-02-18 Thread jarkman
Thanks - so did you define your activities in com.foo.appcore, or do they have to be in the com.foo.applite/appfull packages ? On Feb 18, 9:36 pm, Mattaku Betsujin mattaku.betsu...@gmail.com wrote: What I did was: Put most of the functionality in a single package, say: com.foo.appcore Then,

[android-developers] Re: Building multiple app versions for the Market

2009-02-18 Thread Mattaku Betsujin
I have two APK files. One in com.foo.appfull package, the other in com.foo.applite package. On Wed, Feb 18, 2009 at 4:36 PM, jarkman jark...@gmail.com wrote: Thanks - so did you define your activities in com.foo.appcore, or do they have to be in the com.foo.applite/appfull packages ? On Feb