Specifying Android Market RAM in the Manifest

后端 未结 4 1545
渐次进展
渐次进展 2021-02-14 05:52

some people continue to download and install our HD game on phones that have 100MB of RAM and give us a bad rating... :)

Is there a way to limit app download to only sma

4条回答
  •  一生所求
    2021-02-14 06:09

    My final solution came from following the tip from Raghav Sood.. After a little research I found out that limiting to screens bellow will limit to devices with 512Mb+ of RAM. It's not 100% secure but it's best solution I found out there :)

    Just add those filters in manifest file..

        
            
            
            
            
            
            
            
            
            
            
            
            
            
        
    

    Please be aware that some new phones have higher density then xhdpi so they will be blocked out! I'm experimenting with the new filter:

    
    

    So far, everything is OK. I found out that I have low-end devices on the supported list but no one complained so far, (for device related bug, in 85k downloads).

    I would recommend a 2nd solution, but please use it with caution! I will definitely use it in my upcoming games.

    You are welcome to give your feedback!

提交回复
热议问题