为什么Google Play上的所有设备都不支持我的Android应用?

时间:2015-10-22 22:08:24

标签: android google-play

我在Google Play商店发布了一个Android应用,但它说它与所有设备不兼容:

enter image description here

enter image description here

enter image description here

这是为什么?就在此之前,我发布了另一个应用程序,它确实与这个应用程序有很大不同,但它几乎与所有设备兼容。

这是我的清单:

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

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/app"
            android:launchMode="singleTask">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- register our ContentProvider -->
        <provider
            android:name=".data.app"
            android:authorities="@string/content_authority"
            android:exported="false"
            android:syncable="true" />

        <activity
            android:name=".DetailActivity"
            android:label="@string/title_activity_detail"
            android:parentActivityName=".FavoritesActivity"
            android:launchMode="singleTask">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.xxx.yyy.MainActivity" />
>
        </activity>
        <activity
            android:name=".FavoritesActivity"
            android:label="@string/title_activity_favorites"
            android:parentActivityName=".MainActivity"
            android:launchMode="singleTask">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.xxx.yyy.MainActivity" />
        </activity>
    </application>

</manifest>

这是我的gradle.build文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.xxx.yy"
        minSdkVersion 10
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.android.support:support-v4:22.2.0'
    compile 'org.json:json:20150729'
    compile 'org.apache.directory.studio:org.apache.commons.codec:1.8'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
    compile 'com.android.support:design:22.2.0'
}

我真的迷失在这里,因为我只有一个许可,INTERNET ..

2 个答案:

答案 0 :(得分:2)

我找到了罪魁祸首!

我的gradle文件中有这一行:

compile 'org.apache.directory.studio:org.apache.commons.codec:1.8'

这很奇怪:Native platforms之前的事情因为那种依赖性而出现了!

这对我来说没有意义......我想我必须找到另一种依赖或其他东西。有人可以向我解释为什么这样的依赖会导致这种情况发生吗?

我删除了该行,重新上载APK后,我现在看到了:

enter image description here

答案 1 :(得分:1)

您的清单中似乎有额外的> -

            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.xxx.yyy.MainActivity" />
>   <==== DELETE THIS
        </activity>
        <activity

不确定为什么你甚至能够使用它进行构建,但我测试了类似的场景,它为我制作了一个APK。我猜你上传的.apk正在搞乱谷歌播放解析设备兼容性。