संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Play Games की सेवाएं, ऐप्लिकेशन के शॉर्टकट अपने-आप जोड़ सकती हैं. उदाहरण के लिए, उपयोगकर्ताओं को Play Games की सेवाओं की प्रोफ़ाइल को तुरंत चुनने की सुविधा देने के लिए.
डिवाइस पर मौजूद खातों की संख्या और गेम के इस्तेमाल के आधार पर, ऐप्लिकेशन के शॉर्टकट जोड़े या हटाए जा सकते हैं.
उपलब्ध शॉर्टकट
प्रोफ़ाइल स्विचर: यह एक शॉर्टकट है. इसकी मदद से, खिलाड़ी अलग-अलग Play Games प्रोफ़ाइलों के बीच स्विच कर सकते हैं. सहायता केंद्र का लेख Play Games प्रोफ़ाइलें स्विच करने का तरीका देखें.
Play Games की सेवाओं से अपने-आप जनरेट हुए ऐप्लिकेशन के शॉर्टकट मैनेज करना
अगर आपका गेम ऐप्लिकेशन शॉर्टकट का इस्तेमाल करता है, तो Play Games की सेवाओं से जनरेट होने वाले ऐप्लिकेशन शॉर्टकट की संख्या को सीमित किया जा सकता है. इसके लिए, किसी भी "android.intent.category.LAUNCHER" गतिविधि के एलान में मेटा-डेटा एलिमेंट जोड़ें. साथ ही, इन चीज़ों को सेट करें:
android:name से "com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER"
android:value तक, ऐप्लिकेशन के शॉर्टकट स्लॉट की ज़्यादा से ज़्यादा संख्या, जिनका इस्तेमाल Play Games की सेवाएं कर सकती हैं.
उदाहरण
इस उदाहरण में, हम ऐप्लिकेशन के शॉर्टकट स्लॉट की संख्या को सीमित करने का तरीका बता रहे हैं. Play Games services, दो स्लॉट तक का इस्तेमाल कर सकती है. हमारे उदाहरण के लिए, हमारे पास शुरू में एक ऐसा ऐप्लिकेशन मेनिफ़ेस्ट होगा जो इस तरह दिखता है:
हो गया. अब Play Games की सेवाएं, ऐप्लिकेशन के शॉर्टकट स्लॉट के दो से ज़्यादा स्लॉट का इस्तेमाल नहीं कर सकतीं.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-26 (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-07-26 (UTC) को अपडेट किया गया."],[],[],null,["# App shortcuts\n\nThe Play Games services may automatically add [app shortcuts](https://developer.android.com/develop/ui/views/launch/shortcuts), for\nexample to allow users to quickly choose the Play Games Services profile to use.\nThe app shortcuts could be added or removed based on the number of the accounts\non the device and the game usage.\n\nAvailable shortcuts\n-------------------\n\n**Profile switcher** : shortcut for players to switch between different Play\nGames Profiles. See [How to switch Play Games profiles](https://support.google.com/googleplay/answer/14754238), for\ncorresponding Help Center article.\n\nManage the Play Games services populated app shortcuts\n------------------------------------------------------\n\nIn case your game actively uses the app shortcuts, you could limit the number of\napp shortcuts populated by the Play Games services. For that add a\n[meta-data](https://developer.android.com/guide/topics/manifest/meta-data-element)\nelement to any `\"android.intent.category.LAUNCHER\"` activity declaration,\nsetting the following:\n\n- `android:name` to `\"com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER\"`\n- `android:value` to the maximum number of the app shortcuts slots that can be used by the Play Games services.\n\n### Example\n\nIn this example, we show how to limit the maximum number of the app shortcuts\nslots that the Play Games services can use to **two** . For our example, we\ninitially would have an\n[app manifest](https://developer.android.com/guide/topics/manifest/manifest-intro)\nthat looks like the following: \n\n \u003cmanifest ... \u003e\n \u003capplication ... \u003e\n \u003cactivity android:name=\".ExampleActivity\" \u003e\n \u003cintent-filter\u003e\n \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n \u003c/intent-filter\u003e\n \u003c/activity \u003e\n ...\n \u003c/application \u003e\n ...\n \u003c/manifest \u003e\n\nAnd to apply the limits the app manifest should be updated to the following: \n\n \u003cmanifest ... \u003e\n \u003capplication ... \u003e\n \u003cactivity android:name=\".ExampleActivity\" \u003e\n \u003cintent-filter\u003e\n \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n \u003c/intent-filter\u003e\n \u003cmeta-data\n android:name=\"com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER\"\n android:value=\"2\" /\u003e\n \u003c/activity \u003e\n ...\n \u003c/application \u003e\n ...\n \u003c/manifest \u003e\n\nThat's it. Now the maximum number of the app shortcuts slots that the Play Games\nservices can use is limited to **two**."]]