简体   繁体   English

Android:我的应用支持的0种设备

[英]Android: 0 supported devices for my app

I've recently uploaded my app to the Google Play Store. 我最近将我的应用上传到了Google Play商店。 After digging through several similar threads on here I still can't solve the issue. 在这里浏览了几个类似的线程后,我仍然无法解决问题。 When I upload my signed apk, it says that there are no supported devices. 当我上传签名的apk时,它说没有支持的设备。 According to google it is based off of my app manifest, which can be found below. 根据google的说法,它基于我的应用清单,可以在下面找到。 Any help would be appreciated, thanks. 任何帮助,将不胜感激,谢谢。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="sd.sdhydro">
    //permissions
    <uses-permission android:name="android.permission.INTERNET" android:required="true" />
    <supports-screens android:xlargeScreens="true" />
    <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="25" />
    <application

        android:allowBackup="true"
        android:icon="@mipmap/let"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="Home Hydroponics System"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".AboutActivity"
            android:label="About" />
        <activity
            android:name=".SettingsActivity"
            android:label="Settings" />
        <activity
            android:name=".NewUserActivity"
            android:label="New User" />
        <activity
            android:name=".UserHomeActivity"
            android:label="@string/title_activity_user_home"
            android:theme="@style/AppTheme.NoActionBar" />
        <activity
            android:name=".ManageEquipmentIDsActivity"
            android:label="Equipment ID Management" />
        <activity
            android:name=".EquipmentHistoryActivity"
            android:label="Equipment History" />
        <activity
        android:name=".EquipmentProfileActivity"
        android:label="Equipment Profile"/>


    </application>

</manifest>

Remove <supports-screen> completely or update it like below: 完全删除<supports-screen>或进行如下更新:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM