अपने टेंप्लेट वाले ऐप्लिकेशन में Android Auto के लिए सहायता जोड़ें
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अपने ऐप्लिकेशन के मेनिफ़ेस्ट में बदलाव करने का तरीका जानने के लिए, यहां दी गई जानकारी पढ़ें. इससे Android Auto को आपके ऐप्लिकेशन के CarAppService
का पता चल पाएगा और वह उसके साथ इंटरैक्ट कर पाएगा.
Android Auto के साथ काम करने की सुविधा के बारे में जानकारी देना
Android Auto host यह जांच करता है कि ऐप्लिकेशन ने Android Auto के साथ काम करने का एलान किया है या नहीं.
इस सुविधा को चालू करने के लिए, अपने ऐप्लिकेशन के मेनिफ़ेस्ट में यह एंट्री शामिल करें:
<application>
...
<meta-data
android:name="com.google.android.gms.car.application"
android:resource="@xml/automotive_app_desc"/>
...
</application>
यह मेनिफ़ेस्ट एंट्री, ऐसी दूसरी एक्सएमएल फ़ाइल को रेफ़र करती है जिसे आपने पाथ AppProjectDirectory/app/src/main/res/xml/automotive_app_desc.xml
के साथ बनाया है.
इस फ़ाइल में, यह बताया जाता है कि आपका ऐप्लिकेशन Android Auto की किन सुविधाओं के साथ काम करता है.
Android for Cars App Library का इस्तेमाल करने वाले ऐप्लिकेशन को, automotive_app_desc.xml
फ़ाइल में template
सुविधा के बारे में बताना होगा:
<automotiveApp>
<uses name="template" />
</automotiveApp>
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-08-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-08-27 (UTC) को अपडेट किया गया."],[],[],null,["Review the following information to learn how make changes to your app's manifest\nso that Android Auto can discover and interact with your app's `CarAppService`.\n\nDeclare Android Auto support\n\nThe [Android Auto host](/training/cars/apps#key-terms-concepts) checks whether\nthe app has declared support for [Android Auto](/training/cars#auto).\nTo enable this support, include the following entry in your app's manifest: \n\n \u003capplication\u003e\n ...\n \u003cmeta-data\n 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 another XML file that you create with the\npath \u003cvar translate=\"no\"\u003eAppProjectDirectory\u003c/var\u003e`/app/src/main/res/xml/automotive_app_desc.xml`.\nIn that file, you declare what Android Auto capabilities your app supports.\n\nApps using the [Android for Cars App\nLibrary](/reference/androidx/car/app/package-summary)\nmust declare the `template` capability in the `automotive_app_desc.xml` file: \n\n \u003cautomotiveApp\u003e\n \u003cuses name=\"template\" /\u003e\n \u003c/automotiveApp\u003e"]]