2016-05-13 101 views
1

我發表我的應用程序Play商店,但它不是在任何設備而非臺式機出..發佈應用程序,但在任何設備沒有顯示接受Destop

如果我去我的應用程序的進入直接聯繫任何設備顯示相同的東西(您的設備不兼容此版本)。可能是什麼原因..?

可能是問題是檢查選項(定價&分佈 - > 同意─>市場退出)在清單文件中的配置設置,Play商店控制檯或選項在我的項目的

我已經嘗試了很多..但我還沒有找到有關這個的任何解決方案..

PLZ儘快 下面我有兩個圖像連接解決這個問題。

我的清單文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="lovecalculator.com.app.androidlocationmaps.lovecalculator" 
    android:versionCode="2" 
    android:versionName="1.1"> 

<compatible-screens> 

    <screen 
     android:screenDensity="ldpi" 
     android:screenSize="small" /> 
    <screen 
     android:screenDensity="mdpi" 
     android:screenSize="normal" /> 
    <screen 
     android:screenDensity="xhdpi" 
     android:screenSize="large" /> 
    <screen 
     android:screenDensity="xhdpi" 
     android:screenSize="xlarge" /> 
</compatible-screens> 


<uses-permission android:name="android.permission.INTERNET"></uses-permission> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 

    <activity 
     android:name=".MainActivity" 
     android:label="@string/app_name" 
     android:configChanges="orientation|screenSize|keyboardHidden" 
     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=".SecondAct" 
     ></activity> 
</application> 

我的搖籃文件

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 23 
buildToolsVersion "23.0.3" 

defaultConfig { 
    applicationId "lovecalculator.com.app.androidlocationmaps.lovecalculator" 
    minSdkVersion 15 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 
testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:23.3.0' 
compile 'com.android.support:design:23.0.0' 
compile 'com.google.android.gms:play-services-ads:8.4.0' 
} 
+0

添加manifest資源配置文件中的問題 –

+0

添加清單文件 –

回答

0

您的問題是在這

<compatible-screens> 

<screen 
    android:screenDensity="ldpi" 
    android:screenSize="small" /> 
<screen 
    android:screenDensity="mdpi" 
    android:screenSize="normal" /> 
<screen 
    android:screenDensity="xhdpi" 
    android:screenSize="large" /> 
<screen 
    android:screenDensity="xhdpi" 
    android:screenSize="xlarge" /> 
</compatible-screens> 

很多屏幕現在不在這個組合中。刪除所有這些或告訴我你的要求,我會幫你寫標準的。

+0

我只是想知道..什麼是主要的配置設置做我需要支持我的應用程序在所有移動設備和平板電腦作爲以及..在清單文件和gradle .. –

+0

只要刪除,並檢查 –

+0

是的,它爲我工作thnx –

0

從Android清單文件中刪除所有compatible-screens標記,並在Google Play商店上傳新APK。它在所有設備上展示。

上傳新的apk後也檢查支持的設備。你有支持的設備數量

+0

好吧,我知道了..生病刪除它們 –

相關問題