미디어 앱에 Android Auto 지원 추가
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Android Auto가 앱의 미디어 브라우저 서비스를 찾아서 서비스와 상호작용할 수 있도록 하려면 앱 매니페스트에서 몇 가지 사항을 변경해야 합니다.
Android Auto 미디어 지원 선언
다음 매니페스트 항목을 사용하여 전화 앱에서 Android Auto를 지원한다는 것을 선언하세요.
<application>
...
<meta-data android:name="com.google.android.gms.car.application"
android:resource="@xml/automotive_app_desc"/>
...
</application>
이 매니페스트 항목은 앱에서 지원하는 자동차 기능을 선언한 XML 파일을 가리킵니다. 미디어 앱이 있음을 나타내려면 automotive_app_desc.xml
이라는 XML 파일을 프로젝트의 res/xml/
디렉터리에 추가합니다. 이 파일에는 다음 내용이 포함되어야 합니다.
<automotiveApp>
<uses name="media"/>
</automotiveApp>
Android Auto 미디어 문제 신고
Android Auto용 미디어 앱을 개발하는 중에 문제가 발생하면 Google Issue Tracker를 사용하여 신고할 수 있습니다.
문제 템플릿에 요청된 모든 정보를 작성해야 합니다.
새 문제 만들기
새로운 문제를 신고하기 전에 그 문제가 문제 목록에 이미 보고되었는지 확인합니다. Tracker에서 문제의 별표를 클릭하여 문제를 구독하고 투표를 할 수 있습니다. 자세한 내용은 문제 구독을 참고하세요.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-08-27(UTC)
[null,null,["최종 업데이트: 2025-08-27(UTC)"],[],[],null,["You need to make a few changes to your app's manifest so that Android Auto\ncan discover and interact with your app's media browser service.\n| **Important:** This guide assumes that you have already [built a media browser service](/training/cars/media#implement_browser) and you want to add support for Android Auto to your existing project. If you are new to app development for cars, see the [Android for Cars overview page](/training/cars).\n\nDeclare media support for Android Auto\n\nUse the following manifest entry to declare that your phone app supports\nAndroid Auto: \n\n \u003capplication\u003e\n ...\n \u003cmeta-data android:name=\"com.google.android.gms.car.application\"\n android:resource=\"@xml/automotive_app_desc\"/\u003e\n ...\n \u003c/application\u003e\n\nThis manifest entry refers to an XML file that declares what automotive\ncapabilities your app supports. To indicate that you have a media app, add an\nXML file named `automotive_app_desc.xml` to the `res/xml/` directory in your\nproject. This file should include the following content: \n\n \u003cautomotiveApp\u003e\n \u003cuses name=\"media\"/\u003e\n \u003c/automotiveApp\u003e\n\nReport an Android Auto Media issue\n\nIf you run into an issue while developing your media app for Android Auto, you\ncan report it using the\n[Google Issue Tracker](https://issuetracker.google.com/issues?q=status:open%20componentid:192643).\nBe sure to fill out all the requested information in the issue template.\n\n[Create a new issue](https://issuetracker.google.com/issues/new?component=192643)\n\nBefore filing a new issue, please check whether it is already reported in the issues\nlist. You can subscribe to and vote for issues by clicking the star for an issue in\nthe tracker. For more information, see\n[Subscribing to an Issue](https://developers.google.com/issue-tracker/guides/subscribe#starring_an_issue)."]]