Play商店显示支持的设备支持15000多台设备

时间:2017-05-09 08:17:23

标签: android google-play

我们在Google Play商店遇到问题,我的应用程序显示0支持的设备,我们已经在不同的设备上检查了它在所有设备上正常运行,但在Google Play商店中显示,“您的设备与此版本不兼容“。并在控制面板上显示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:

摇篮:

 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已与PayTm集成。

1 个答案:

答案 0 :(得分:0)

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

依赖有问题,我已经从

更改了它
 'compile 'commons-io:commons-io:2.4'

现在问题已经解决了。