android - Google Play 不提供在 Nexus 7 上安装的应用程序。如何更改 Android Manifest?

标签 android manifest nexus-7

我已经在 Google Play 上发布了一个应用程序。当我在我的 Galaxy S3 或任何其他手机上安装时一切正常。但是当我想在我的 Nexus 7 上安装这个应用程序时,我在 Google Play 上找不到它。

这是我的 list :

  <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="XX.XX.XX"
    android:versionCode="3"
    android:versionName="1.1" >
    <supports-screens android:largeScreens="true"
                       android:smallScreens="true"
                       android:anyDensity="true"
                       android:xlargeScreens="true"
                       android:normalScreens="true"/>
    <uses-sdk
        android:minSdkVersion="13"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.CALL_PHONE" android:required="false"></uses-permission>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity android:name="splash"
        android:theme="@android:style/Theme.NoTitleBar">

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:theme="@android:style/Theme.Holo.Light.NoActionBar"
            android:name="XX.XX.XX.MainActivity">

        </activity>
                <activity android:name="vocation" android:theme="@android:style/Theme.Holo.Light"></activity>
        <activity android:name="XX" android:theme="@android:style/Theme.Holo.Light"></activity>
        <activity android:name="XX" android:theme="@android:style/Theme.Holo.Light"></activity>
        <activity android:name="XXX" android:theme="@android:style/Theme.Holo.Light"></activity>


</application>

有人有想法吗? 非常感谢

最佳答案

更新uses-permission行:

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

添加uses-feature :

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

关于android - Google Play 不提供在 Nexus 7 上安装的应用程序。如何更改 Android Manifest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17215150/

相关文章:

android - Nexus 7 新版本解决资源文件夹问题

java - Jenkins 中 JAR/WAR list 的 Subversion 属性

javascript - 支持内容脚本中的所有谷歌域

java - 当字符串为空时如何阻止应用程序崩溃

android - 在布局上布局,顶部布局的中心背景图像

amazon-web-services - AWS 雅典娜。无法使用 CSV list 作为位置

css 媒体查询,在方向之间切换会破坏布局

android - 将文件保存在 Nexus 7 的外部存储器上并从 PC 检索

android - 如何听dev/binder?

android - 编辑文本 : Avoid getting focus on setText()