Build games for cars

The Games category is in beta
At this time, anyone can publish games to internal testing and closed testing tracks on the Play Store. Publishing to open testing and production tracks will be permitted at a later date.

Games offer a unique opportunity to engage users in a fun and interactive way while their car is parked. By bringing your game to cars, you can reach a new audience and provide entertainment during downtime.

In addition to the guidance on this page, follow the platform-specific requirements for each platform that your game is compatible with:

Mark your app as a game

To indicate that your app is a game, you must add the android:appCategory="game" attribute to the <application> element of your manifest.

<manifest ...>
    ...
    <application
      ...
      android:appCategory="game">
        ...
    </application>
</manifest>

Declare support for game controllers (optional)

If your app supports controller input, include the following manifest declaration for the android.hardware.gamepad feature, as OEMs can use this information to improve the user experience:

<application ...>
  ...
  <uses-feature android:name="android.hardware.gamepad" android:required="false"/>
  ...
</application>