2017-04-11 4 views
0

Ich habe meine App kürzlich in den Google Play Store hochgeladen. Nachdem ich hier einige ähnliche Threads durchgegraben habe, kann ich das Problem immer noch nicht lösen. Wenn ich meine signierte Apk hochlade, heißt das, dass keine unterstützten Geräte vorhanden sind. Laut Google basiert es auf meinem App-Manifest, das unten zu finden ist. Jede Hilfe wäre dankbar, danke.Android: 0 unterstützte Geräte für meine App

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

Entfernen Sie die 'unterstützt-screens' Element. –

Antwort

0

entfernen <supports-screen> vollständig oder aktualisieren, wie unter:

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

Ich habe es geändert und immer noch kein Glück. Hier finden Sie weitere Informationen: [Screenshot] (https://i.gyazo.com/7aa0b3d512f72bdf482d557bb40a2be3.png). – conq

Verwandte Themen