• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Developing Apps for Multiple Versions of Android

hey
i have developed an android app using lollipop version it was my first time
so it can't work on device having kitkat version but i guess it is possible . i don't know how can i make my work on various versions
please guide me ...
 
You can set the minsdk parameter of your manifest file, to allow installation of your app on previous versions of Android.
However you need to be aware that this may limit your use of features in the code you write, because the SDK evolves over time, and things become deprecated.
 
The way to be sure that your app works on all targeted versions, is to use the emulator to test.
 
Back
Top Bottom