2016-08-10 84 views
0

我正在從Cordova項目構建Android APK,但是當我將其上傳到Play Store時,它表示它僅與300個設備兼容。爲什麼我的android應用程序與大多數設備不兼容?

我不太瞭解Android發佈;然而,我之前完成了這個任務,但沒有問題。如您使用的Android

<?xml version='1.0' encoding='utf-8'?> 
<manifest android:hardwareAccelerated="true" android:versionCode="10001" android:versionName="1.0.1" package="com.app.my" xmlns:android="http://schemas.android.com/apk/res/android"> 
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" /> 
    <uses-permission android:name="android.permission.INTERNET" /> 
    <application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true"> 
     <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize"> 
      <intent-filter android:label="@string/launcher_name"> 
       <action android:name="android.intent.action.MAIN" /> 
       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 
    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" /> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 
</manifest> 
+0

同時使用'機器人:supportsRtl = 「真正的」'你必須設置'targetSdkVersion' 17 – Kathi

+0

@Kathi他的目標版本23,比17高,所以這應該沒問題。我只是猜你的意思是應該將minSdkVersion增加到17?同時採用了android – Endzeit

+0

喔.. \t :supportsRtl =「真」,你必須設置的minSdkVersion 17 感謝@Endzeit – Kathi

回答

0

:如果我理解正確的話這應該是與我AndroidManifest.xml文件,它看起來像這樣(由Cordova產生)supportsRtl =「真」,那麼你的targetSdk必須是17。詳情請參閱以下內容

android:supportsRtl =「true」聲明您的應用程序是否願意支持從右向左(RTL)佈局。如果設置爲true並且targetSdkVersion設置爲17或更高,則系統將激活並使用各種RTL API,以便您的應用可以顯示RTL佈局。如果設置爲false或者targetSdkVersion設置爲16或更低,則RTL API將被忽略或無效,並且無論與用戶的Locale選項關聯的佈局方向如何,您的應用程序都會表現相同(您的佈局將始終保留-to-右)。

此屬性的默認值爲false。

這個屬性在API級別增加17

(來源:http://developer.android.com/guide/topics/manifest/application-element.html

+0

感謝您的回覆。我已經試過禁用RTL和API級別設置爲17,但仍然只有346可用的設備。 – Jurgen

+0

如果您仔細閱讀報價,您會發現它的狀態爲17或更高的tragetSdkVersion。因此使用版本23作爲targetSdk滿足此要求。 – Endzeit

+1

啊對了。所以基本上這個問題根本就不在支撐物中......? – Jurgen

相關問題