2014-11-11 2 views
0

Google Play에서 0 기기가 호환된다는 것을 알 수 있지만 애플리케이션을 게시했습니다. 매니페스트를 확인했지만 이유를 모르겠습니다.Google play 지원 기기 0

나는 minsdk와 targetsdk를 변경하려고했지만 결과는 같습니다.

도와주세요.

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="it.h2_web.www.agos" 
    android:versionCode="3" 
    android:versionName="1.0"> 
    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="17" /> 

    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> 
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
    <uses-permission android:name="android.permission.CALL_PHONE" /> 



    <application 
     android:allowBackup="true" 
     android:icon="@drawable/icona" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 

     <receiver android:name=".services.BootCompletedIntentReceiver"> 
      <intent-filter> 
       <action android:name="android.intent.action.BOOT_COMPLETED" /> 
       <action android:name="YouWillNeverKillMe" /> 
      </intent-filter> 
     </receiver> 
     <service android:enabled="true" android:name=".services.MyService"></service> 

     <activity 
      android:name=".Dashboard" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" 
      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=".ImmobiliView" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" 
      android:screenOrientation="portrait" 
      > 

     </activity> 
     <activity 
      android:name=".ClientiView" 
      android:label="@string/app_name" 
      android:screenOrientation="portrait" 
      > 

     </activity> 
     <activity 
      android:name=".ImmobiliList" 
      android:label="@string/app_name" 
      android:screenOrientation="portrait"> 

     </activity> 
     <activity 
      android:name=".ClientiList" 
      android:label="@string/app_name" 
      android:screenOrientation="portrait"> 

     </activity> 
     <activity 
      android:name=".LoginView" 
      android:label="@string/app_name" 
      android:screenOrientation="portrait"> 

     </activity> 
     <activity 
      android:name=".WebActivity" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" 
      android:windowSoftInputMode="adjustPan" 
      android:screenOrientation="portrait"> 

     </activity> 

     <activity 
      android:name=".AgendaView" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"> 

     </activity> 
     <activity 
      android:name=".ContactsView" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"> 

     </activity> 
    </application> 

</manifest> 

답변

관련 문제