page.title=Getting Started with Auto page.tags="auto", "car", "automotive" page.article=true page.image=auto/images/assets/icons/auto_app_in_simulator.png @jd:body
Android Auto extends the Android platform into the car. When users connect their handheld devices running Android 5.0 or higher to a compatible vehicle, the Auto user interface provides a car-optimized Android experience on the vehicle's screen. Users interact with compatible apps and services through voice actions and the vehicle's input controls (like a touchscreen or dashboard buttons).
Auto currently supports two types of apps:
You can enable your existing audio and messaging apps developed for phones and tablets to work in the car, without having to worry about vehicle-specific hardware differences. To enable your app for Auto, your app must target Android 5.0 (API level 21) or higher. Your app’s manifest must also declare the car capabilities that it uses, such as audio playback or messaging services.
This lesson describes how to start building apps for Auto, including setting up your development environment and meeting the the minimum requirements to enable an app to communicate with Auto.
This section describes how to create a new app or modify an existing app to communicate with Auto.
Before you begin building apps for Auto, you must:
The Auto features that your app can access are controlled by the settings in your app manifest and a separate XML configuration file. Before adding Auto features to your app, you must first define the Auto XML configuration file and add a manifest entry referencing your XML file.
Specify the car capabilities that your app uses in an XML file that you place in your project’s resources directory ({@code res/xml/}). For example, to extend an audio application for Auto, create a file called {@code automotive_app_desc.xml} and store it under your projects’s {@code res/xml/} folder. The {@code automotive_app_desc.xml} file contains the following metadata:
<automotiveApp> <uses name="media" /> </automotiveApp>
The {@code <uses>} element declares the Auto capability your app intends to use. Multiple {@code <uses>} tags can be added if your application uses multiple car capabilities. The {@code name} attribute indicates the specific capability your app uses. The values supported are:
In your app’s manifest ({@code AndroidManifest.xml}), provide a reference to the Auto XML configuration file you created in the previous section. Add a {@code "com.google.android.gms.car.application"} metadata entry under the {@code <application>} element that references your Auto XML configuration file. Omit the {@code .xml} file extension when specifying the configuration filename.
The following code snippet shows how to include this reference in your manifest.
<application> ... <meta-data android:name="com.google.android.gms.car.application" android:resource="@xml/automotive_app_desc"/> </application>
After you have completed the steps described above, you're ready to add Auto features to your apps. See these additional topics to help you build apps for Auto:
Important: Google takes driver distraction very seriously. There are specific design requirements your app must meet to qualify as an Auto app on Google Play. By adhering to these requirements, you can reduce the effort for building and testing your app. For more information, see Auto App Quality.
As you develop, you can run and test your app on your development machine using the Desktop Head Unit (DHU). The DHU replaces the existing simulators and enables your development machine to simulate a vehicle dashboard system running Android Auto.
<sdk>/extras/google/auto/
directory.$ sudo apt-get install libsdl2-2.0-0 libsdl2-ttf-2.0-0 libportaudio2 libpng12-0
Run the DHU by connecting your mobile device to a development machine and setting up a connection to the head unit server over Android Debug Bridge (ADB). Follow these steps to set up tunneling and start the DHU:
On the device, a foreground service appears in the notification area.
$ adb forward tcp:5277 tcp:5277
desktop-head-unit.exe
(on Windows)
or ./desktop-head-unit
(on Mac or Linux) from the
<sdk>/extras/google/auto/
directory.
$ cd <sdk>/extras/google/auto $ ./desktop-head-unit
By default, the head unit server connects over port 5277. To override the host or port
(for example, to forward over SSH), use the --adb
flag.
After you set up and start the DHU, you can run DHU commands from the command line to run and test your app from the terminal. You can also run these commands by using keyboard shortcuts. For more information about DHU configuration and commands, see Desktop Head Unit.