Selecting minimum android verion

79 Views Asked by At

I wanted to develop an application. What shall I consider to select my target android version (minimum version requirement)?

1

There are 1 best solutions below

0
On

You can follow this link

<uses-sdk
    android:maxSdkVersion="21"
    android:minSdkVersion="9"
    />

you can use like this in AndroidManifest.xml