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:
- Add support for Android Auto to your parked app
- Add support for Android Automotive OS to your parked app
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>