gpt4 book ai didi

Android list - 设备兼容性列表,缺少 Galaxy S2

转载 作者:行者123 更新时间:2023-11-30 04:29:10 24 4
gpt4 key购买 nike

我一直在准备发布我的应用程序,但遇到了设备兼容性问题,我只收到大约 215 台或更少兼容的设备。对我来说最引人注目的是三星 Galaxy S2,现在我已经在这款设备上进行了全面测试,它运行良好。我想知道这里是否有人可以在我的 list 中看到任何可能丢失/导致冲突的内容。

注意:在此项目中使用 Unity android 和 OpenFeint。

这些是市场表现得过于明显的特征:

Screen layouts: SMALL NORMAL LARGE XLARGE Required device features android.hardware.touchscreen

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="preferExternal" package="com.openfeint.api" android:versionName="1.4.1" android:versionCode="6">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
android:resizeable="true" />
<application android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false">
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation" android:screenOrientation="landscape">
<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.VideoPlayer" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation">
</activity>
<activity android:name="com.openfeint.internal.ui.IntroFlow"
android:label="IntroFlow"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="landscape"/>

<activity android:name="com.openfeint.api.ui.Dashboard"
android:label="Dashboard"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="landscape"/>

<activity android:name="com.openfeint.internal.ui.Settings"
android:label="Settings"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="landscape"/>

<activity android:name="com.openfeint.internal.ui.NativeBrowser"
android:label="NativeBrowser"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="landscape"/>
</application>
<uses-feature android:glEsVersion="0x00010001" />
<uses-feature android:name="android.hardware.screen.landscape" android:required="false"/>
<uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="9" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.GET_TASKS"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
</manifest>

最佳答案

之前的答案不正确 - 您不能在 uses-permission 中使用 required="false",它必须在 uses-feauture 中。像这样的电话状态:

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

这里有更多相关信息:http://developer.android.com/guide/topics/manifest/uses-feature-element.html#permissions

关于Android list - 设备兼容性列表,缺少 Galaxy S2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8009778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com