【问题标题】:Google Play - Compability error on publish game made in UnityGoogle Play - 在 Unity 中发布游戏时出现兼容性错误
【发布时间】:2014-03-13 22:12:17
【问题描述】:

你好吗?

好吧,我在 Google Play 中的游戏遇到了一些问题。 问题是:我和我的合作伙伴昨天在 Google Play 上发布了该应用程序,但是,该应用程序似乎无法下载到任何设备,即使最低版本是 Android 2.2(最低 SDK 8,目标 SDK 19)。始终显示设备不兼容的消息。在开发过程中,我们使用 Nexus 4 进行测试,一切正常,但仍然无法在 Google Play 上下载该手机上的游戏。该游戏也在 Galaxy S3、Nexus 5、XPeria U 和 Moto G 上测试过,运行良好,也无法下载。

我更改了 AndroidManifest.xml 中的所有内容,就像我在各种线程中看到的那样,但没有任何改变。这是我的 .xml 的内容

请帮忙,我不知道该怎么办。

谢谢!

    <?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    android:installLocation="preferExternal"
    android:theme="@android:style/Theme.NoTitleBar"
    android:versionCode="4"
    android:versionName="1.0.1">

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:anyDensity="true"/>

    <application
        android:icon="@drawable/app_icon"
        android:label="@string/app_name"
        android:debuggable="true">
        <activity android:name="com.unity3d.player.UnityPlayerProxyActivity"
                  android:launchMode="singleTask"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.unity3d.player.UnityPlayerActivity"
                  android:launchMode="singleTask"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
        </activity>
        <activity android:name="com.unity3d.player.UnityPlayerNativeActivity"
                  android:launchMode="singleTask"
                  android:label="@string/app_name"
                  android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
            <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
        </activity>

            <activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
            <receiver android:name="com.google.ads.InstallReceiver" android:exported="true">
                <intent-filter>
                    <action android:name="com.android.vending.INSTALL_REFERRER" />  
                </intent-filter>
            </receiver>
</application>

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


</manifest>

【问题讨论】:

    标签: android unity3d google-play compatibility


    【解决方案1】:

    如果您发布了 alfa 或 beta 等游戏,您必须定义一个邮件来测试应用程序。但是如果你已经这样做了,你可以检查以下问题:

    1 - 检查挂号信中定义的设备;

    2 - 将设备的处理器版本与 Unity 上的处理器版本(即 ARMv7)进行比较;

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2015-02-15
      • 2021-04-27
      • 1970-01-01
      • 2019-07-08
      • 2021-10-08
      • 1970-01-01
      • 2014-06-14
      • 1970-01-01
      相关资源
      最近更新 更多