znq
znq

Reputation: 44963

Android: building different versions of my app (free, premium, etc.) with Eclipse

With my current code base I'd like to build two or more different versions of my Android app (free, premium, ...). For the iPhone (XCode) I can definte different targets. Is there something similar implemented in Eclipse?

Upvotes: 4

Views: 483

Answers (3)

alshapton
alshapton

Reputation: 568

You could use Library projects - supported in Eclipse - here http://developer.android.com/guide/developing/projects/projects-eclipse.html#SettingUpLibraryProject

Upvotes: 0

appmattus
appmattus

Reputation: 2808

For my builds I have set up in Eclipse my projects using Maven and the maven-android-plugin. This allows you to depend on the apksources of other projects and override the code and resources of them.

Upvotes: 0

MrSnowflake
MrSnowflake

Reputation: 4742

I don't think there's such functionality in Eclipse (or the Android plug-in for it). Though using ant you should be able to achieve this.

Upvotes: 2

Related Questions