我的测试版应用中没有兼容的divices

时间:2018-06-07 07:33:15

标签: android

我不明白为什么,我只是尝试在Google Play上推送测试版,而且我在这个版本上没有兼容的设备(请看屏幕截图)。因此,当我下载应用程序时,它会安装我当前的生产版本,但不会像预期的那样安装测试版。

我没有问题在我的设备上使用android studio在dev mod上安装它所以我知道这个应用程序在我的手机上工作。

有人可以帮帮我吗?感谢

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.lgondor.simpledice"
    >
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-feature android:name="android.hardware.camera2.full" />
    <uses-feature android:name="android.hardware.sensor.accelerometer" />
    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true">
    </supports-screens>
    <application
        android:allowBackup="true"
        android:icon="@drawable/icon_small_shadow"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.lgondor.simpledice.MainActivity"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.lgondor.simpledice.AddCustomDiceActivity"
            android:screenOrientation="portrait">
        </activity>
        <activity android:name="com.lgondor.simpledice.ManageSwitchActivity"
            android:screenOrientation="portrait">
        </activity>
        <activity android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
            android:theme="@android:style/Theme.Translucent" />
        <service android:name="com.lgondor.simpledice.services.WearService">
            <intent-filter>
                <action android:name="com.google.android.gms.wearable.MESSAGE_RECEIVED" />
            </intent-filter>
        </service>
    </application>
</manifest>

enter image description here

0 个答案:

没有答案