- সিনট্যাক্স:
<queries> <package android:name="string" /> <intent> ... </intent> <provider android:authorities="list" /> ... </queries>
- এর মধ্যে রয়েছে:
-
<manifest>
- বর্ণনা:
অন্য অ্যাপগুলির সেট নির্দিষ্ট করে যেগুলির সাথে একটি অ্যাপ ইন্টারঅ্যাক্ট করতে চায়৷ এই অন্যান্য অ্যাপ্লিকেশানগুলি প্যাকেজের নাম দ্বারা , অভিপ্রায় স্বাক্ষর দ্বারা বা প্রদানকারী কর্তৃপক্ষ দ্বারা নির্দিষ্ট করা হয়েছে, যেমন এই পৃষ্ঠার নিম্নলিখিত বিভাগে বর্ণিত হয়েছে৷
দ্রষ্টব্য: কিছু প্যাকেজ স্বয়ংক্রিয়ভাবে দৃশ্যমান হয়। আপনার অ্যাপ সর্বদা অন্যান্য ইনস্টল করা অ্যাপের জন্য তার অনুসন্ধানে এই প্যাকেজগুলি দেখতে পায়। অন্যান্য প্যাকেজ দেখতে,
<queries>
উপাদান ব্যবহার করে প্যাকেজ দৃশ্যমানতা বৃদ্ধির জন্য আপনার অ্যাপের প্রয়োজনীয়তা ঘোষণা করুন।অ্যান্ড্রয়েডে প্যাকেজ দৃশ্যমানতা ফিল্টারিং -এ
<queries>
উপাদানটি কীভাবে ব্যবহার করবেন সে সম্পর্কে আরও জানুন।- শিশু উপাদান:
- প্রবর্তিত:
- API স্তর 30
- এছাড়াও দেখুন:
- অ্যান্ড্রয়েডে প্যাকেজ দৃশ্যমানতা ফিল্টারিং
<queries>
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি 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,["# <queries\u003e\n\nsyntax:\n:\n\n ```xml\n \u003cqueries\u003e\n \u003cpackage android:name=\"string\" /\u003e\n \u003cintent\u003e\n ...\n \u003c/intent\u003e\n \u003cprovider android:authorities=\"list\" /\u003e\n ...\n \u003c/queries\u003e\n ```\n\ncontained in:\n: [\u003cmanifest\u003e](/guide/topics/manifest/manifest-element)\n\ndescription:\n\n: Specifies the set of other apps that an app\n intends to interact with. These other apps are specified\n [by package name](#package), [by intent\n signature](#intent), or [by provider authority](#provider), as described in\n the following sections on this page.\n\n **Note:** Some packages are\n [visible automatically](/training/package-visibility/automatic). Your\n app always sees these packages in its queries for other installed apps. To\n view other packages, declare your app's need for increased package visibility\n using the `\u003cqueries\u003e` element.\n\n Learn more about how to use the `\u003cqueries\u003e` element in\n [Package visibility filtering on Android](/training/package-visibility).\n\nchild elements:\n:\n\n `\u003cpackage\u003e`\n\n : Specifies a single app that your app intends to access. This other\n app might integrate with your app, or your app might use services that the\n other app provides.\n\n attributes:\n\n `android:name`\n : **Required.** Specifies the package name of the other app.\n\n `\u003cintent\u003e`\n\n : Specifies an [intent filter\n signature](/training/basics/intents/filters). Your app can discover other apps that have matching\n [`\u003cintent-filter\u003e`](/guide/topics/manifest/intent-filter-element)\n elements.\n\n **Note:** There are some restrictions on the\n options that you can include in this `\u003cintent\u003e` element,\n compared to a typical intent filter signature. Learn more about these\n restrictions in [Packages\n that match an intent filter signature](/training/package-visibility/declaring#intent-filter-signature).\n\n `\u003cprovider\u003e`\n\n : Specifies one or more\n [content\n provider authorities](/guide/topics/providers/content-provider-basics#ContentURIs). Your app can discover other apps whose content\n providers use the specified authorities.\n\n **Note:** There are some restrictions on the\n options that you can include in this `\u003cprovider\u003e` element,\n compared to a typical\n [`\u003cprovider\u003e`](/guide/topics/manifest/provider-element)\n manifest element. Usually, you only specify the\n `android:authorities` attribute.\n\nintroduced in:\n: API level 30\n\nsee also:\n: [Package visibility filtering on Android](/training/package-visibility)"]]