首页 文章

Android应用与4.0.4不兼容

提问于
浏览
0

我有三星Galaxy SII(Sprint版Epic 4G Touch)运行Cyanogen 9(4.0.4 ICS) . 屏幕密度默认为 . 在市场上它说我的应用程序与API 8-16兼容,并支持小xtra大屏幕 . 由于某种原因,它仍然与我的手机不兼容 . 它与我的自定义ROM有关吗?或者可能是我正在运行4.0.4的事实?所有无法安装的用户似乎也在运行自定义roms .

我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.pwnsro.dayz"
android:versionCode="5"
android:versionName="1.0.4" >

<uses-sdk android:minSdkVersion="8"

    android:targetSdkVersion="15" />
<supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:resizeable="true"
    android:smallScreens="true" >
</supports-screens>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".DayZActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

我的project.properties:

target=android-15

*编辑:似乎只有ICS上AOSP Roms的用户才有兼容性问题 . 我切换到三星4.0.4 ROM,我能够从市场上安装它 .

2 回答

  • 0

    您是否碰巧在Android开发者控制台中将复制保护设置为ON?看看this页面 .

    要复制保护应用程序,请在为应用程序配置发布选项时将复制保护设置为“开” . Google Play不会在开发者设备或未发布的设备上显示受版权保护的应用程序 .

  • 1

    既然你这么说:

    我切换到三星4.0.4 ROM,我能够从市场上安装它 .

    我想问题是你的自定义ROM . 你试过另一个自定义ROM吗?也许这是特定ROM或Google Play无法将其识别为兼容SO的问题 .

相关问题