हमारा सुझाव है कि 27 मार्च, 2025 से AOSP को बनाने और उसमें योगदान देने के लिए, aosp-main
के बजाय android-latest-release
का इस्तेमाल करें. ज़्यादा जानकारी के लिए, AOSP में हुए बदलाव लेख पढ़ें.
यूएसबी से डेटा सिग्नल भेजने की प्रोसेस बंद करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Android 12 में, आईटी एडमिन के लिए एक नई सुविधा जोड़ी गई है. इसकी मदद से, कंपनी के मालिकाना हक वाले डिवाइसों पर यूएसबी के ज़रिए डेटा सिग्नल भेजने की सुविधा को बंद किया जा सकता है. हालांकि, चार्जिंग फ़ंक्शन को बंद नहीं किया जा सकता. इस सुविधा का इस्तेमाल करने के लिए, OEM को अपने USB HAL को अपडेट करना होगा. साथ ही, डिवाइस नीति मैनेजर एपीआई के लिए जोड़ी गई सहायता का इस्तेमाल करना होगा.
Device Policy Manager
यूएसबी के ज़रिए सिग्नल भेजने की सुविधा बंद करने के लिए, DevicePolicyManager
में ये तीन सार्वजनिक एपीआई शामिल किए गए हैं:
setUsbDataSignalingEnabled(boolean enabled)
एक ऐसा एपीआई है जो UsbManager
में enableUsbDataSignal
एपीआई को कॉल करके, यूएसबी डेटा सिग्नल को चालू या बंद करता है.
canUsbDataSignalingBeDisabled()
एक एपीआई है, जो यह जांच करता है कि डिवाइस पर यूएसबी डेटा सिग्नल की सुविधा चालू या बंद की जा सकती है या नहीं.
isUsbDataSignalingEnabled()
एक एपीआई है, जो यह जांच करता है कि यूएसबी से डेटा सिग्नल भेजने की प्रोसेस चालू है या नहीं.
- यह जांचने के लिए ज़रूरी है कि नीति के बारे में साफ़ तौर पर जानकारी देने वाली डायलॉग विंडो दिख रही है या नहीं. सिस्टम के उपयोगकर्ता, इस खास एपीआई के लिए छिपे हुए वैरिएंट को कॉल कर सकते हैं. सिस्टम के उपयोगकर्ता, इस वैरिएंट को कॉल करके यह देख सकते हैं कि किसी उपयोगकर्ता के लिए यूएसबी डेटा सिग्नल चालू है या नहीं.
Device Policy Manager को लागू करने का उदाहरण
डिवाइस नीति मैनेजर को लागू करने का उदाहरण यहां दिया गया है.
class android.app.admin.DevicePolicyManager {
/**
* Called by device owner or profile owner of an organization-owned managed profile to
* enable or disable USB data signaling for the device. When disabled, USB data connections
* (except from charging functions) are prohibited.
*
* <p> This API is not supported on all devices, the caller should call
* {@link #canUsbDataSignalingBeDisabled()} to check whether enabling or disabling USB data
* signaling is supported on the device.
*
* @param enabled whether USB data signaling should be enabled or not.
* @throws SecurityException if the caller is not a device owner or a profile owner on
* an organization-owned managed profile.
* @throws IllegalStateException if disabling USB data signaling is not supported or
* if USB data signaling fails to be enabled/disabled.
*/
public void setUsbDataSignalingEnabled(boolean enabled);
/**
* Called by device owner or profile owner of an organization-owned managed profile to return
* whether USB data signaling is currently enabled by the admin.
*
* @return {@code true} if USB data signaling is enabled, {@code false} otherwise.
*/
public boolean isUsbDataSignalingEnabled();
/**
* Called by the system to check whether USB data signaling is currently enabled for this user.
*
* @param userId which user to check for.
* @return {@code true} if USB data signaling is enabled, {@code false} otherwise.
* @hide
*/
public boolean isUsbDataSignalingEnabledForUser(@UserIdInt int userId);
/**
* Returns whether enabling or disabling USB data signaling is supported on the device.
*
* @return {@code true} if the device supports enabling and disabling USB data signaling.
*/
public boolean canUsbDataSignalingBeDisabled();
सेटिंग
यूएसबी कनेक्ट होने के बाद, उपयोगकर्ता यूएसबी की प्राथमिकता और tethering की सेटिंग में बदलाव कर सकते हैं. यूएसबी की सेटिंग वाली स्क्रीन को ऐक्सेस करने के लिए, यह तरीका अपनाएं:
- सेटिंग पर टैप करें.
- कनेक्ट किए गए डिवाइस पर टैप करें.
- यूएसबी पर टैप करें.
ध्यान दें: अगर यूएसबी कनेक्ट नहीं है, तो यूएसबी की प्राथमिकताओं में बदलाव नहीं किया जा सकता. साथ ही, वे कनेक्ट किए गए डिवाइसों की विंडो में नहीं दिखेंगी.
अगर कोई आईटी एडमिन, कॉर्पोरेट के मालिकाना हक वाले डिवाइस पर यूएसबी डेटा सिग्नल की सुविधा बंद कर देता है, तो उपयोगकर्ता अपनी यूएसबी सेटिंग में बदलाव नहीं कर सकता. इसके बजाय, सेटिंग में यूएसबी की सभी सेटिंग पूरी तरह से बंद कर दी जाती हैं. इससे, नीति के बारे में साफ़ तौर पर बताने वाली डायलॉग विंडो खुलेगी.
ध्यान दें: अगर यूएसबी से डेटा सिग्नल भेजने की प्रोसेस बंद कर दी जाती है, तो डेवलपर के विकल्पों में यूएसबी डीबगिंग, डिफ़ॉल्ट यूएसबी कॉन्फ़िगरेशन, और यूएसबी ऑडियो रूटिंग की प्राथमिकताएं सभी बंद हो जाएंगी.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-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-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Disable data signaling over USB\n\nAndroid 12 has added the ability for IT admins to disable data signaling\nover USB on corporate-owned devices (except for the charging function). In order to support this\nfunctionality, OEMs must update their USB HAL and utilize the added support for Device Policy\nManager APIs.\n\nDevice Policy Manager\n---------------------\n\nTo support disabling signaling over USB, the following three public APIs are included in\n`DevicePolicyManager`:\n\n- `setUsbDataSignalingEnabled(boolean enabled)` is an API that enables or disables USB data signaling by calling the `enableUsbDataSignal` API in `UsbManager`.\n- `canUsbDataSignalingBeDisabled()` is an API that checks whether enabling or disabling USB data signaling is supported on the device.\n- `isUsbDataSignalingEnabled()` is an API that checks whether USB data signaling has been enabled.\n - This is required to check whether or not a policy transparency dialog window is shown. System users can call a hidden variant for this particular API that can be called by the system user to check if USB data signaling has been enabled for a particular user.\n\n### Device Policy Manager implementation example\n\nThe following is an example of how to implement the Device Policy Manager. \n\n```\nclass android.app.admin.DevicePolicyManager {\n /**\n * Called by device owner or profile owner of an organization-owned managed profile to\n * enable or disable USB data signaling for the device. When disabled, USB data connections\n * (except from charging functions) are prohibited.\n *\n * \u003cp\u003e This API is not supported on all devices, the caller should call\n * {@link #canUsbDataSignalingBeDisabled()} to check whether enabling or disabling USB data\n * signaling is supported on the device.\n *\n * @param enabled whether USB data signaling should be enabled or not.\n * @throws SecurityException if the caller is not a device owner or a profile owner on\n * an organization-owned managed profile.\n * @throws IllegalStateException if disabling USB data signaling is not supported or\n * if USB data signaling fails to be enabled/disabled.\n */\n public void setUsbDataSignalingEnabled(boolean enabled);\n\n\n /**\n * Called by device owner or profile owner of an organization-owned managed profile to return\n * whether USB data signaling is currently enabled by the admin.\n *\n * @return {@code true} if USB data signaling is enabled, {@code false} otherwise.\n */\n public boolean isUsbDataSignalingEnabled();\n\n\n /**\n * Called by the system to check whether USB data signaling is currently enabled for this user.\n *\n * @param userId which user to check for.\n * @return {@code true} if USB data signaling is enabled, {@code false} otherwise.\n * @hide\n */\n public boolean isUsbDataSignalingEnabledForUser(@UserIdInt int userId);\n\n\n /**\n * Returns whether enabling or disabling USB data signaling is supported on the device.\n *\n * @return {@code true} if the device supports enabling and disabling USB data signaling.\n */\n public boolean canUsbDataSignalingBeDisabled();\n```\n\nSettings\n--------\n\n- Users can modify USB preference and tethering settings as soon as USB is connected. To access the USB preferences screen, do the following:\n 1. Tap **Settings.**\n 2. Tap **Connected devices.**\n 3. Tap **USB.**\n- **Note:** If USB is not connected, USB preferences can't be modified and will not appear in the Connected devices window.\n- If an IT admin disables USB data signaling on a corporate-owned device, the user can't modify their USB preferences. Instead, all USB preferences in **Settings** are totally disabled, which will create a policy transparency dialog window.\n- **Note:** If USB data signaling is disabled, USB debugging, default USB configurations, and USB audio routing preferences will all be disabled in developer options."]]