Build games for Android Automotive OS

There is one additional technical requirement to build games for Android Automotive OS beyond those described in Build parked apps for Android Automotive OS.

Mark your app as a game app

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

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