সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
প্লে গেম পরিষেবাগুলি স্বয়ংক্রিয়ভাবে অ্যাপ শর্টকাট যোগ করতে পারে, উদাহরণস্বরূপ ব্যবহারকারীদের ব্যবহার করার জন্য প্লে গেম পরিষেবা প্রোফাইলটি দ্রুত চয়ন করার অনুমতি দেওয়ার জন্য৷ ডিভাইসে অ্যাকাউন্টের সংখ্যা এবং গেম ব্যবহারের উপর ভিত্তি করে অ্যাপ শর্টকাট যোগ করা বা সরানো যেতে পারে।
উপলব্ধ শর্টকাট
প্রোফাইল সুইচার : খেলোয়াড়দের বিভিন্ন প্লে গেম প্রোফাইলের মধ্যে স্যুইচ করার জন্য শর্টকাট। সংশ্লিষ্ট সহায়তা কেন্দ্র নিবন্ধের জন্য Play Games প্রোফাইলগুলি কীভাবে স্যুইচ করবেন তা দেখুন।
প্লে গেম পরিষেবাগুলি জনবহুল অ্যাপ শর্টকাটগুলি পরিচালনা করুন৷
যদি আপনার গেমটি সক্রিয়ভাবে অ্যাপ শর্টকাট ব্যবহার করে, তাহলে আপনি প্লে গেম পরিষেবাগুলির দ্বারা জনবহুল অ্যাপ শর্টকাটের সংখ্যা সীমিত করতে পারেন। এর জন্য যেকোন "android.intent.category.LAUNCHER" কার্যকলাপ ঘোষণায় একটি মেটা-ডেটা উপাদান যোগ করুন, নিম্নলিখিত সেট করুন:
android:name থেকে "com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER"
android:value যা প্লে গেম পরিষেবাগুলি ব্যবহার করতে পারে৷
উদাহরণ
এই উদাহরণে, আমরা দেখাই কিভাবে অ্যাপ শর্টকাট স্লটগুলির সর্বাধিক সংখ্যক সীমিত করা যায় যা প্লে গেম পরিষেবাগুলি দুটিতে ব্যবহার করতে পারে৷ আমাদের উদাহরণের জন্য, আমাদের কাছে প্রাথমিকভাবে একটি অ্যাপ ম্যানিফেস্ট থাকবে যা নিচের মত দেখাচ্ছে:
সেটাই। এখন অ্যাপ শর্টকাট স্লটগুলির সর্বাধিক সংখ্যা যা প্লে গেম পরিষেবাগুলি ব্যবহার করতে পারে তা দুটিতে সীমাবদ্ধ।
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 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-29 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**."]]