2017-04-11 62 views
0

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

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

卸下'支持-screens'元件。 –

回答

0

完全取出<supports-screen>或更新它象下面這樣:

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

我改變了這一點,仍然沒有運氣。以下是更多信息: [截圖](https://i.gyazo.com/7aa0b3d512f72bdf482d557bb40a2be3.png)。 – conq