If there is a way to check device compatibility on Google Play without downloading it

When an Android application is uploaded to the market, Google Play will determine the list of compatible devices depending on the application manifest settings, for example:

  • uses permission
  • use-feature
  • uses SDK
  • supports screens

So far, I have discovered that I had to set up my manifest so that access to my application for more devices only after loading my application on Google Play.

Is there a way to check device compatibility before launching it on the market?

+7
source share
1 answer

This "aapt" tool from the SDK is mentioned at http://developer.android.com/guide/topics/manifest/uses-feature-element.html , which will give you what you ask.

However, I have never used this tool, and I still believe that downloading a file is the best way to make sure everything is in order. Of course, it takes a little longer, but at least you are sure that you will get the final answer.

+3
source

All Articles