簡體   English   中英

為什么我的應用程序無法在Android Market中為1.5個用戶顯示?

[英]Why is my app not showing up for 1.5 users in the Android Market?

該應用是Android市場上的Flash Cards Max 我最近使用僅1.6功能更新了我的應用程序。 但是,我仍然希望該應用程序可以與裝有Android 1.5的應用程序一起使用。 我在Eclipse中使用Android 1.6構建了它,並且Android清單文件中包含正確的字符串。

<uses-sdk 
    android:minSdkVersion="3"
    android:targetSdkVersion="4"
 />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

一切都可以在1.5的模擬器上正常運行,只是要確保它能在1.5的模擬器上顯示在Android電子市場中。 它不是。 這是一個市場過濾問題。

由於您的一些建議,請參閱此主題以獲取有關我所做的更改以及如何進行的信息。

tl; dr

為什么我的應用程序不顯示1.5個用戶?

有用的用戶對Reddit的回答。

“我遇到了同樣的問題,解決方法是<supports-screens/>

為什么?

因為

android:anyDensity

Indicates whether the application can accommodate any screen density. Older applications (pre API Level 4) are assumed unable to accomodate all densities and this is "false" by default. Applications using API Level 4 or higher are assumed able to and this is "true" by default. You can explicitly supply your abilities here."

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM