Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does Features column represent in Google Play Console?

I've just uploaded a new bundle to the Google Play console.

The summary has a Features column, which currently says 4 in my new build but was 2 in my last build.

screenshot

What does the Features column represent?

And bonus question, how can I tell what those 4 Features are (vs the 2 in last build)?

like image 974
Ben Avatar asked Sep 02 '19 10:09

Ben


People also ask

What does production mean in Google Play console?

Production. Your app is available for download to Google Play users in your chosen country or region. No active releases. This means that either you did not roll out updates on any tracks or the updates were rejected.

What is publishing overview in Play Console?

The Publishing overview page helps you keep track of upcoming changes and control when approved changes are published. The changes listed can include updates to how your app is distributed on Google Play, such as the addition of new countries/regions to your app's production release.

How long does it take to publish an app on Google Play 2022?

It will take up to 7 days to get it approved. Once approved, it will be available publicly for download on Google Play Store.

How do I change the category on my Google Play console?

Open Play Console. Select an app. On the left menu, select Grow > Store presence > Store settings. In the "App category" section, select an application type and category.


1 Answers

Clicking on dropdown icon:

enter image description here

Reveals "Features" line with details :

enter image description here

I'm guessing that this refers to attributes that are imported using uses-feature tag in AndroidManifest.xml. Here's the list of all possible values in doc.

Note, that transitive dependencies might declare uses-feature themselves, thus you might see this number increasing though you haven't added that attribute yourself.

like image 186
azizbekian Avatar answered Oct 13 '22 13:10

azizbekian