Craig Gallagher
Craig Gallagher

Reputation: 235

How to downgrade from android 5.0 to android 4.1 on eclipse

My application can only be used on android 5.0 or higher. How would I go about downgrading to version 4.1 in eclipse so older phones can use it.

Upvotes: 1

Views: 68

Answers (2)

Mayuso
Mayuso

Reputation: 1329

In case you don´t get a better answer:

You can create a new project for android 4.1, configure the build path and copy src folder.

Not the best method though. Just the one I normally use (the only one I know) and works.

Upvotes: 0

Matt
Matt

Reputation: 1308

The answer to your question is in the documentation: http://developer.android.com/guide/topics/manifest/uses-sdk-element.html And this is useful fragment from that page:

<manifest>
  <uses-sdk android:minSdkVersion="5" />
  ...
</manifest>

Upvotes: 1

Related Questions