Play商店显示0个支持的设备不在15000+个设备中 [英] Play store shows 0 supported device out ot 15000+ devices

查看:112
本文介绍了Play商店显示0个支持的设备不在15000+个设备中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Google Play商店存在问题,我的应用显示支持的设备为0个,我们在不同的设备上检查过它在所有设备上都能正常运行,但在谷歌Play商店显示,您的设备与此版本不兼容。并在控制面板上显示0支持的设备,任何人都可以帮助我?
我的mainfest是:

 <?xml version =1.0encoding =utf-8?> ; 
< manifest xmlns:android =http://schemas.android.com/apk/res/android
package =com.studybox>

<使用权限android:name =android.permission.INTERNET/>
< uses-permission android:name =android.permission.ACCESS_NETWORK_STATE/>
< uses-permission android:name =android.permission.ACCESS_FINE_LOCATION/>
< uses-permission android:name =android.permission.ACCESS_COARSE_LOCATION/>
< uses-permission android:name =android.permission.WRITE_EXTERNAL_STORAGE/>
< uses-permission android:name =android.permission.WRITE_INTERNAL_STORAGE/>
< uses-permission android:name =android.permission.GET_TASKS/>

< uses-sdk
android:minSdkVersion =17
android:targetSdkVersion =20
android:maxSdkVersion =24/>

< application
android:name =com.studybox.Controller.AppController
android:allowBackup =true
android:icon =@ mipmap / app_icon
android:label =@ string / app_name
android:supportsRtl =true
android:theme =@ style / AppTheme>

<! - Google GCM - >
< meta-data
android:name =com.google.android.gms.version
android:value =@ integer / google_play_services_version/>

<! - Google MAP API密钥 - >
< meta-data
android:name =com.google.android.maps.v2.API_KEY
android:value =xxxx/>

< activity
android:name =com.studybox.Splash
android:screenOrientation =portrait>

< intent-filter>
< category android:name =android.intent.category.LAUNCHER/>
< / intent-filter>

< / activity>
< activity
android:name =com.studybox.MainActivity
android:screenOrientation =portrait
android:windowSoftInputMode =stateAlwaysHidden/>
< activity
android:name =com.studybox.Login
android:screenOrientation =portrait
android:windowSoftInputMode =stateHidden | adjustPan/>
< activity
android:name =com.studybox.ForgetPassword
android:screenOrientation =portrait
android:windowSoftInputMode =stateHidden | adjustPan/>
< activity
android:name =com.studybox.Register
android:screenOrientation =portrait
android:windowSoftInputMode =stateHidden | adjustPan/>
< activity
android:name =com.studybox.DashBoard
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.StartNow
android:screenOrientation =portrait
android:windowSoftInputMode =stateHidden | adjustPan/>
< activity
android:name =com.studybox.InstituteDetail
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.StudyMaterial
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.BookInstitute
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.Notifications
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.MockTest
android:label =@ string / title_activity_mock_test
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.StartMockTest
android:screenOrientation =portrait
android:windowSoftInputMode =stateHidden | adjustResize/>
< activity
android:name =com.studybox.MyCourse
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.RoomDiscussion
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.DiscussionQueries
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.QueryDetails
android:screenOrientation =portrait/>

android:name =com.studybox.MyCourseList
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.PrivacyPolicy
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.CourseDetails_
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.CourseInstitutes
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.Reviews
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.CourseRequets
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.MockTextResult
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.BatchList
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.SeeReviews
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.ClassSchedule
android:screenOrientation =portrait/>
< activity
android:name =com.studybox.NotificationMessageActivity
android:launchMode =singleInstance
android:theme =@ style / Theme.Transparent/ >
android:name =com.paytm.pgsdk.PaytmPGActivity
android:configChanges =keyboardHidden | orientation | keyboard
android:screenOrientation =portrait />

< service android:name =com.studybox.Notification.MyFirebaseMessagingService>
< intent-filter>
< / intent-filter>
< / service>
< / application>

< / manifest>
任何人都可以帮助我:

Gradle:

  apply plugin:'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion23.0.2
defaultConfig {
applicationIdcom.studybox
minSdkVersion 17
targetSdkVersion 20
maxSdkVersion 24
versionCode 2
versionName1.1
multiDexEnabled true
testInstrumentationRunnerandroid.support.test.runner.AndroidJUnitRunner
}
buildTypes
{
release {
minifyEnabled false
proguardFiles getDefaultProguardFile ('proguard-android.txt'),'proguard-rules.pro'
}
}
}

依赖项
{
编译fileTree(包括:['* .jar'],dir:'libs')
androidTestCompile('com.android.support.test.espresso:e spresso-core:2.2.2',{
exclude group:'com.android.support',module:'support-annotations'
})
compile'c​​om.android.support: appcompat-v7:23.4.0'
testCompile'junit:junit:4.12'
compile'c​​om.android.support:design:23.2.0'
compile'c​​om.android.support: cardview-v7:23.1.1'
compile'c​​om.android.support:recyclerview-v7:23.1.1'
compile'c​​om.google.android.gms:play-services:9.0.0'
compile'c​​om.squareup.retrofit2:retrofit:2.0.2'
compile'c​​om.squareup.retrofit2:converter-gson:2.0.2'
compile'org.apache.directory。 studio:org.apache.commons.io:2.4'
compile'de.hdodenhof:circleimageview:2.1.0'
compile'c​​om.squareup.picasso:picasso:2.5.0'
编译'com.android.support:multidex:1.0.0'
编译'com.github.d-max:spots-dialog:0.4@aar'
编译'com.google.firebase:firebase-messaging:9.0.0'
编译文件('libs / PGSDK_V2.0 .jar')
}
apply plugin:'com.google.gms.google-services'

App有PayTm集成。

解决方案

 'org.apache。 directory.studio:org.apache.commons.io:2.4'

依赖项有问题,我已更改它来自

 'compile'c​​ommons-io:commons-io:2.4'



现在问题已解决。


We have issue with Google play store, My app shows 0 supported device, We have checked it on different devices it's working fine on all devices, But on google play store it is showing,"your device is not compatible with this version." and on Control Panel Shows 0 Supported Device, Anyone can help me?? my mainfest is:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.studybox">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.GET_TASKS" />

    <uses-sdk
        android:minSdkVersion="17"
        android:targetSdkVersion="20"
        android:maxSdkVersion="24"/>

    <application
        android:name="com.studybox.Controller.AppController"
        android:allowBackup="true"
        android:icon="@mipmap/app_icon"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <!-- Google GCM -->
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <!-- Google MAP API key -->
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="xxxx" />

        <activity
            android:name="com.studybox.Splash"
            android:screenOrientation="portrait">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

        </activity>
        <activity
            android:name="com.studybox.MainActivity"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateAlwaysHidden" />
        <activity
            android:name="com.studybox.Login"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustPan" />
        <activity
            android:name="com.studybox.ForgetPassword"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustPan" />
        <activity
            android:name="com.studybox.Register"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustPan" />
        <activity
            android:name="com.studybox.DashBoard"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.StartNow"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustPan" />
        <activity
            android:name="com.studybox.InstituteDetail"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.StudyMaterial"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.BookInstitute"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.Notifications"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.MockTest"
            android:label="@string/title_activity_mock_test"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.StartMockTest"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustResize" />
        <activity
            android:name="com.studybox.MyCourse"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.RoomDiscussion"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.DiscussionQueries"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.QueryDetails"
            android:screenOrientation="portrait" />

        <activity
            android:name="com.studybox.MyCourseList"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.PrivacyPolicy"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.CourseDetails_"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.CourseInstitutes"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.Reviews"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.CourseRequets"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.MockTextResult"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.BatchList"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.SeeReviews"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.ClassSchedule"
            android:screenOrientation="portrait" />
        <activity
            android:name="com.studybox.NotificationMessageActivity"
            android:launchMode="singleInstance"
            android:theme="@style/Theme.Transparent" />
        <activity
            android:name="com.paytm.pgsdk.PaytmPGActivity"
            android:configChanges="keyboardHidden|orientation|keyboard"
            android:screenOrientation="portrait" />

        <service android:name="com.studybox.Notification.MyFirebaseMessagingService">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>
    </application>

</manifest>
Any one can help me:

Gradle:

 apply plugin: 'com.android.application'
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"
    defaultConfig {
        applicationId "com.studybox"
        minSdkVersion 17
        targetSdkVersion 20
        maxSdkVersion 24
        versionCode 2
        versionName "1.1"
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes
            {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies
        {
            compile fileTree(include: ['*.jar'], dir: 'libs')
            androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
                exclude group: 'com.android.support', module: 'support-annotations'
            })
            compile 'com.android.support:appcompat-v7:23.4.0'
            testCompile 'junit:junit:4.12'
            compile 'com.android.support:design:23.2.0'
            compile 'com.android.support:cardview-v7:23.1.1'
            compile 'com.android.support:recyclerview-v7:23.1.1'
            compile 'com.google.android.gms:play-services:9.0.0'
            compile 'com.squareup.retrofit2:retrofit:2.0.2'
            compile 'com.squareup.retrofit2:converter-gson:2.0.2'
            compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
            compile 'de.hdodenhof:circleimageview:2.1.0'
            compile 'com.squareup.picasso:picasso:2.5.0'
            compile 'com.android.support:multidex:1.0.0'
            compile 'com.github.d-max:spots-dialog:0.4@aar'
            compile 'com.google.firebase:firebase-messaging:9.0.0'
            compile files('libs/PGSDK_V2.0.jar')
        }
apply plugin: 'com.google.gms.google-services'

App Has PayTm integration.

解决方案

'org.apache.directory.studio:org.apache.commons.io:2.4' 

Dependency has problem, I have changed it from

 'compile 'commons-io:commons-io:2.4'

Now problem have solved.

这篇关于Play商店显示0个支持的设备不在15000+个设备中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆