My application do not show in some devices when trying to download via Google Play.From googling I understood that it is due to uses-permission
and we can it by uses-feature
<uses-feature
android:name="android.hardware.location"
android:required="false" />
I want to fix this issue.So how can i check which of these uses-permission
supports the current device and enable the supported permissions?
Also, How can we check the these permission related non listing issue locally with out uploading to google play?
Thanks in Advance