y ramesh rao
y ramesh rao

Reputation: 3004

Creating different Builds for the same Android Source Code

I have a Android project for SDK1.5 and now I want to convert it for SDK2.1 with some constant changes for the UI. Should I create a complete new Project or the existing project can be manipulated for including the lastest changes. I'm using Eclipse for Development.

Upvotes: 1

Views: 236

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006839

You can use reflection and conditional class loading in many cases to allow you to support multiple API versions in a single app.

Upvotes: 1

Related Questions