Home > Software engineering >  List all devices my app is installed and have a specific System Feature
List all devices my app is installed and have a specific System Feature

Time:03-17

I've been searching, with no luck, for a way to list all the devices my app is installed and have a specific System Feature. For example if you head over to Play Console > Reach and devices > Device catalog > Add filter and add a System Feature, it will list all the supported devices (check attached screenshot).

However, I want to get a detailed list of the devices my app is installed and that possess this feature.

Are you guys aware of a way to achieve that? Thanks in advance!

1

CodePudding user response:

Since you tagged your question with google-analytics I assume that you're trying to filter the event data in Google Analytics based on the device that reported those events.

No such filtering on device capabilities is available in Google Analytics that I know of. You'll have to make your own mapping from the capabilities you want to filter on to a list of device types, and then filter on those device types in Google Analyics.

  • Related