'How to make Apk available in play store for the version 6 android phones

I have published my application with a minimum SDK 23 but unfortunately, it's not showing the application in the play store for the android version 6 phones. I have tried to downgrade to a minimum SDK 22 but still failed to solve the problem. Here is my minSdk version

android { compileSdkVersion 30 buildToolsVersion "30.0.3"

defaultConfig {
    applicationId "com.ioradix.ryogas"
    minSdk 23
    targetSdkVersion 30
    versionCode 19
    versionName "1.0.7"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

How may I make available the app in the play store for android version 6 devices? Thanks in advance.

Here is the build Gradle information.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source