> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Override Minimum SDK Version

> Override the minimum value of SDK version.

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
</div>

* `minSdkVersion` is the minimum version of the Android operating system required to run your application. The Android app must have a minimum SDK version 19 or higher.

* If you want to support devices below API level 19, you must override `minSDK` version.

#### Sample Code to Override minSDK Version

```javascript Override MinSDK Version theme={null}
<uses-sdk android:targetSdkVersion="27" android:minSdkVersion="19"
            tools:overrideLibrary="com.razorpay"/>
```
