Override Minimum SDK Version
Override the minimum value of SDK version.
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🔗
Copy<uses-sdk android:targetSdkVersion="27" android:minSdkVersion="19"
tools:overrideLibrary="com.razorpay"/>
×
ON THIS PAGE