为什么我的设备不受我在Google Play上的游戏支持

时间:2012-11-13 06:55:20

标签: android google-play

我有一台装有Android 2.1(API-7)的设备, 它支持蓝牙,WiFi,但没有GSM和3G。

我有一个游戏。 谷歌播放说我的设备不支持该游戏。

但在我添加Admob横幅广告权限之前,Google Play上的游戏是可见的。 谜。

我玩了清单。 如果我删除了蓝牙权限,则可以在Google Play上看到该游戏。

清单如下:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="mypackage1..."
      android:versionCode="13"
      android:versionName="4.5">
<uses-sdk android:targetSdkVersion="13"  android:minSdkVersion="3"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />


<application android:label="@string/app_name" android:icon="@drawable/icon">
    <activity android:name=".MyActivity"
              android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name=".DeviceListActivity"
              android:label="@string/select_device"
              android:theme="@android:style/Theme.Dialog"
              android:configChanges="orientation|keyboardHidden" />
    <activity android:name=".MyActivity2"/>
    <activity android:name="com.google.ads.AdActivity"

  android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|
screenSize|smallestScreenSize"/>

    <service android:name=".BillingService" />
    <receiver android:name=".BillingReceiver">
        <intent-filter>
            <action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
            <action android:name="com.android.vending.billing.RESPONSE_CODE" />
            <action android:name=
"com.android.vending.billing.PURCHASE_STATE_CHANGED"   />
        </intent-filter>
    </receiver>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.android.vending.BILLING" />
</manifest>

那我的第一场比赛有什么问题? 我的设备是平板电脑“英寸U7s”。 我的游戏APK在Google上的权限如下:

    android.permission.BLUETOOTH_ADMIN, 
android.permission.BLUETOOTH, 
android.permission.ACCESS_NETWORK_STATE, 
android.permission.INTERNET, 
com.android.vending.BILLING, 
Functions: android.hardware.bluetooth, android.hardware.touchscreen
API: 4-17+
Screens: small-xlarge
OpenGL: all
Platforms: armeabi-v7a, armeabi

感谢。

1 个答案:

答案 0 :(得分:1)

默认情况下,许多权限都表示硬件要求。例如,如果您要求相机许可,则应用程序默认需要相机。您必须将该功能专门设置为不需要。

蓝牙应该不是问题,因为您的APK定位API 4+。也许它与应用内结算相关。

尝试运行“aapt dump badging myapp.apk”并查看它列出的使用功能行。