Is there a tool to check supported devices before uploading to Google Play?

android, google-play

Solution

I hope it will help you, using this command you can see support screens, permissions, version etc Run this command in cmd:

aapt dump badging myapp.apk

Problem

When you upload you apk to Google Play, you get a list of devices that are supported or not. Is there a tool which would allow me to investigate which features will make specific devices incompatible other than disabling features one by one and uploading to check for changes in the supported list?

Original source