If there a way to check device compatibility on go

2019-03-27 16:01发布

When uploading an Android application into the market Google Play determine a list of compatible devices depending of your application manifest settings like for example:

  • uses-permission
  • uses-feature
  • uses-sdk
  • supports-screens

Until now I discovered I had to tweak my manifest in order to have my app available to more devices only after uploading my app to Google Play.

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

1条回答
\"骚年 ilove
2楼-- · 2019-03-27 16:23

There is this "aapt" tool from the SDK mentionned in http://developer.android.com/guide/topics/manifest/uses-feature-element.html that will give you what you are asking.

However, I never used this tool and I'm still believing that uploading a file is the best way to be sure that everything is OK. Sure, it takes a little more time but at least, you're assured to have the final answer.

查看更多
登录 后发表回答