简体   繁体   English

我已将我的应用程序上传到 Play 商店,但有些设备没有出现

[英]I have upload my app into play store, but some devices not appeared

below is used things in app以下是应用程序中使用的东西

minSdkVersion 19, targetSdkVersion 29 minSdkVersion 19,targetSdkVersion 29

Below 8.0.0 version: Not visible in play store;低于 8.0.0 版本:在 Play 商店中不可见; 8.0.0 version: Only this version phone can visible in play store; 8.0.0 版本:play store 中只能看到这个版本的手机; Above 8.0.0 version: Not visible in play store; 8.0.0 以上版本:在 Play 商店中不可见;

I have migrate to AndroidX我已经迁移到 AndroidX

After rejection of app(due to app send SMS, and Call Permission) i have removed those options and again re-uploaded my app to play store在拒绝应用程序(由于应用程序发送短信和呼叫权限)后,我删除了这些选项并再次将我的应用程序重新上传到 Play 商店

Now app is in live but, when i search app (Lifeonplus) is not displaying except 8.0.0 version phone.现在应用程序已上线,但是当我搜索应用程序(Lifeonplus)时,除了 8.0.0 版本的手机外没有显示。 Please help me out this.请帮我解决这个问题。 where i went wrong?我哪里出错了? App should display above 4.4 version应用应显示高于 4.4 版本

Build gradle & class Path构建 gradle 和 class 路径

 buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Model: App Model:应用程序

apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
        applicationId "com.digital.lifeonplus"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 7
        versionName "1.0.6"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    implementation 'com.google.android.gms:play-services-location:16.0.0'
    implementation 'com.karumi:dexter:4.2.0'
    implementation 'info.androidhive:barcode-reader:1.1.5'
    implementation 'com.google.android.gms:play-services-vision:11.4.0'
    implementation 'com.budiyev.android:code-scanner:2.1.0'
    implementation 'com.github.clans:fab:1.6.4'
    implementation 'de.hdodenhof:circleimageview:3.0.0'
    implementation 'com.loopj.android:android-async-http:1.4.9'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    //Apache httpclient-android library
    implementation group: 'org.apache.httpcomponents', name: 'httpclient-android', version: '4.3.5.1'

    //Excluding httpclient since it is already part of httpclient-android
    implementation('org.apache.httpcomponents:httpmime:4.3') {
        exclude module: "httpclient"
    }
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.6.0'
    implementation 'androidx.preference:preference:1.1.0'
}

Finally i got the answer for my own question, i have used NFC hardware feature required true, so after that i changed it to false, its displaying all the phones最后我得到了我自己问题的答案,我使用了 NFC 硬件功能要求为真,所以之后我将其更改为假,它显示所有手机

<uses-feature
        android:name="android.hardware.nfc"
        android:required="false" />

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM