Reputation: 51
I have a phone with 4.2.2(Jellybean) version, I want to create a application on that version but that version is obsolete. Can I still build on that version on Android Studio?
Upvotes: 0
Views: 718
Reputation: 199795
Per this blog post, you should always compile with the latest SDK (and the same applies to build tools, gradle version, etc). What you compile with is independent from the minimum and target SDK version you use.
Upvotes: 1
Reputation: 817
You can build apps for any of the version. SDK version for Jellybean is 17. Just setup the minSdkVersion
in build.gradle
as 17 (or lower if you wish to use it with even earlier versions of android).
You'll also get this option to choose the minimum sdk version from the new project wizard itself while creating one.
In short, yes you can make it. Also, You may need to download the relevant API if you want to use the emulator.
Upvotes: 1