2

I have created an app and published in play store.. The application can only view above android OS 5.0. But, my minimum sdkversion is 11.. Why i can't see my app in play store list below 5.0.. And how to show app below 5.0...

The following code is my build.gradle code..

android 
{
    compileSdkVersion 21
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.example.testing"
        minSdkVersion 11
        targetSdkVersion 21
        versionCode 1
        multiDexEnabled true
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

`

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/AppTheme">
    <activity
        android:name=".Login"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize" />

    <activity
        android:name=".Signup"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize" />
    <activity
        android:name=".ChildList"
        android:screenOrientation="portrait" />
    <activity
        android:name=".AddChild"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan"/>
    <activity
        android:name=".GalleryUtil"
        android:screenOrientation="portrait" />
    <activity
        android:name=".AssignChores"
        android:screenOrientation="portrait" />
    <activity
        android:name=".AddReward"
        android:screenOrientation="portrait" />
    <activity
        android:name=".ChildDashBoard"
        android:screenOrientation="portrait" />
    <activity
        android:name=".Schedule"
        android:screenOrientation="portrait" />
    <activity
        android:name=".ForgotPassword"
        android:screenOrientation="portrait" />
    <activity
        android:name=".SplashActivity"
        android:screenOrientation="portrait"
        android:theme="@style/SplashScreen"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity><!-- ATTENTION: This was auto-generated to add Google Play services to your project for
 App Indexing.  See https://g.co/AppIndexing/AndroidStudio for more information. -->
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
</application>

`

karthik
  • 181
  • 2
  • 3
  • 10

0 Answers0