簡體   English   中英

Android:我的應用支持的0種設備

[英]Android: 0 supported devices for my app

我最近將我的應用上傳到了Google Play商店。 在這里瀏覽了幾個類似的線程后,我仍然無法解決問題。 當我上傳簽名的apk時,它說沒有支持的設備。 根據google的說法,它基於我的應用清單,可以在下面找到。 任何幫助,將不勝感激,謝謝。

<?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>

完全刪除<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