Android Play store显示0台受支持的设备,超过15000台+;装置

Android Play store显示0台受支持的设备,超过15000台+;装置,android,google-play,Android,Google Play,我们对Google play store有问题,我的应用程序显示0支持的设备,我们在不同的设备上进行了检查,它在所有设备上都正常工作,但在Google play store上显示“您的设备与此版本不兼容”。在控制面板上显示0支持的设备,任何人都可以帮助我?? 我的主要爱好是: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/and

我们对Google play store有问题,我的应用程序显示0支持的设备,我们在不同的设备上进行了检查,它在所有设备上都正常工作,但在Google play store上显示“您的设备与此版本不兼容”。在控制面板上显示0支持的设备,任何人都可以帮助我?? 我的主要爱好是:

<?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:
应用程序具有PayTm集成

'org.apache.directory.studio:org.apache.commons.io:2.4' 
依赖关系有问题,我已经从

 'compile 'commons-io:commons-io:2.4'
现在问题解决了

依赖关系有问题,我已经从

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

现在问题已经解决。

我将在Android Studio中的apk analyzer工具中打开apk,并查看合并的AndroidManifest文件。也许在与gradle构建apk时存在一些无法拦截的奇怪版本冲突。很抱歉,我们无法为您提供apk,请检查代码并向我提供您的建议。好吧,您误解了我。我说过如果我是你我会怎么做。我的意思是:你应该用你的
apk
文件试试。我不想要你的apk。好吧,我试过了,效果也很好。我想你还是不理解我。。。您分析了apk中的合并清单了吗?我会在Android Studio中的apk analyzer工具中打开apk,然后查看合并的AndroidManifest文件。也许在与gradle构建apk时存在一些无法拦截的奇怪版本冲突。很抱歉,我们无法为您提供apk,请检查代码并向我提供您的建议。好吧,您误解了我。我说过如果我是你我会怎么做。我的意思是:你应该用你的
apk
文件试试。我不想要你的apk。好吧,我试过了,效果也很好。我想你还是不理解我。。。您是否分析了apk中的合并清单?