Reputation: 235
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
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
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