Java Android应用程序没有';google play商店中没有显示

Java Android应用程序没有';google play商店中没有显示,java,android,publishing,Java,Android,Publishing,我已经创建了一个应用程序并在play store中发布。。该应用程序只能在android OS 5.0上查看。但是,我的最小sdkversion是11。。为什么我在5.0以下的play store列表中看不到我的应用程序。。以及如何显示低于5.0的应用程序 以下代码是我的build.gradle代码 android { compileSdkVersion 21 buildToolsVersion "23.0.1" defaultConfig { app

我已经创建了一个应用程序并在play store中发布。。该应用程序只能在android OS 5.0上查看。但是,我的最小sdkversion是11。。为什么我在5.0以下的play store列表中看不到我的应用程序。。以及如何显示低于5.0的应用程序

以下代码是我的build.gradle代码

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'
        }
    }
}
`



`

应用程序只能在android OS 5.0上查看-你是说应用程序使用棒棒糖提供的功能吗?您所说的“仅查看”是什么意思?同时共享您的清单文件不需要支持屏幕标记。从清单中删除它们。第二,需要相机和自动对焦。如果不是强制性的,请在此处添加另一个标记android:required=“false”,并在I second@Yashir中添加。请删除支持屏幕标签并使用-feature.No。这些都是与编译相关的东西。对谷歌游戏商店没有影响!
<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>