Android App for Cars: Parking/Charging/Navigation

Viewed 573

I am trying to create Andriod Auto App for Parking and Charging. I found the guide from the link: https://developer.android.com/training/cars/navigation

It seems there are three categories of apps supported now in Android Automotive. But, only Media Service works for me, Parking, Charging or Navigation does not show up in the Android Auto app launcher. However, the Settings App show my installed App. The Supported App category listed below.

            <action android:name="android.media.browse.MediaBrowserService"/>
            <category android:name="androidx.car.app.category.PARKING"/>
            <category android:name="aandroidx.car.app.category.CHARGING"/>
            <category android:name="androidx.car.app.category.NAVIGATION"/>

The Emulator I am using is with Google Automotive System Image with Android 10.

2 Answers

Did you try car_app_library samples in Github? Esp. navigation module in it. I can see launcher icon for navigation sample in Polestar2 emulator by following README.md in the samples.

Related