Skip to main content

HOW TO ENABLE USB DEBUGGING IN REDMI Y3 || ENABLE USB DEBUGGING IN ANY ANDROID PHONE

 In the event that you've at any point attempted to do anything progressed on your Android telephone, you've probably heard (or read) the expression "USB Debugging." This is a normally utilized choice that is concealed conveniently under Android's Developer Options menu, yet it's as yet something that numerous clients empower without even batting an eye and without understanding what it truly does. For instance, in the event that you've at any point needed to utilize ADB (the Android Debugging Bridge) to do things like glimmer a Factory Image on a Nexus gadget or root a gadget, then, at that point you've effectively utilized USB Debugging if you understood it.

USB Debugging


So, USB Debugging is a path for an Android gadget to speak with the Android SDK (Software Developer Kit) over a USB association. It permits an Android gadget to get orders, documents, and such from the PC and permits the PC to pull vital data like log records from the Android gadget. And you should simply tick a catch to get it going. Flawless, correct?

Obviously, everything has a drawback, and for USB Debugging, it's security. Fundamentally, leaving USB investigating empowered keeps the gadget uncovered when it's connected over USB. Under most conditions, this isn't an issue—in case you're connecting the telephone to your PC or you have the goal of utilizing the troubleshooting span, then, at that point, it bodes well to leave it empowered constantly. The issue becomes possibly the most important factor in the event that you need to plug your telephone into a new USB port—like a public charging station. In principle, in the event that somebody approached the charging station, they could utilize USB investigating to adequately take private data from the gadget, or push some kind of malware onto it.

Fortunately, Google has an underlying security net here: per PC approval for USB Debugging access. At the point when you plug the Android gadget into another PC, it will incite you to endorse a USB investigating association. On the off chance that you deny access, the association is rarely opened. It's an extraordinary safeguard, yet clients who may not understand what it is may simply endorse the association all higgledy-piggledy, which is something awful.

TO ENABLE USB DEBUGGING FOLLOW THESE STEPS -

STEP1:>OPEN THE SETTINGS OF YOUR PHONE AND FIND                             ABOUT DEVICE.



STEP2:>FIND UI VERSION. AND PRESS AND RELEASE                             FINGER UNTILL "YOU ARE NOW DEVELOPER" POPUPS

USB Debugging

STEP3:> GO BACK TO SETTINGS AND FIND ADDITIONAL                     SETTINGS

USB Debugging

STEP4:>CLICK ON ADDITIONAL SETTINGS AND FIND USB                 DEBUGGING

USB Debugging

STEP5:>CLICK ON IT AND PRESS OK

USB Debugging

DONE NOW USB DEBUGGING ON YOUR ANDROID PHONE IS ENABLE YOU CAN USE ITS FUNCTION ON CONNECTING WITH PC.
FOR MORE UPDATES SUBSCRIBE MY YOUTUBE CHANNEL- https://www.youtube.com/channel/UC0P6CdAI2zU14j4BFly-AAQ
AND THIS FOLLOW THIS BLOG.
THANK YOU SO MUCH FOR READING. MEET YOU NEXT TIME WITH ANOTHER TOPIC.

Comments

Post a Comment

Share your views on this blog😍😍

Popular posts from this blog

LeetCode 88 Explained: Four Approaches, Mistakes, Fixes & the Final Optimal Python Solution

Evolving My Solution to “Merge Sorted Array” A practical, beginner-friendly walkthrough showing four versions of my code (from a naive approach to the optimal in-place two-pointer solution). Includes explanations, complexity and ready-to-paste code. Problem Summary You are given two sorted arrays: nums1 with size m + n (first m are valid) nums2 with size n Goal: Merge nums2 into nums1 in sorted order in-place . Version 1 — Beginner Approach (Extra List) I merged into a new list then copied back. Works, but not in-place and uses extra memory. class Solution: def merge(self, nums1, m, nums2, n): result = [] p1 = 0 p2 = 0 for _ in range(m+n): if p1 >= m: result.extend(nums2[p2:n]) break elif p2 >= n: result.extend(nums1[p1:m]) break elif nu...

Introducing CodeMad: Your Ultimate Universal IDE with Custom Shortcuts

Introducing CodeMad: Your Ultimate Multi-Language IDE with Custom Shortcuts Welcome to the world of CodeMad, your all-in-one Integrated Development Environment (IDE) that simplifies coding and boosts productivity. Developed in Python, CodeMad is designed to make your coding experience smoother and more efficient across a variety of programming languages, including C, C++, Java, Python, and HTML. Whether you're a beginner or an experienced programmer, CodeMad is your go-to tool. In this blog, we'll dive deep into the workings of CodeMad, highlighting its unique features and easy installation process. The Power of Shortcuts CodeMad's intuitive interface is built around a set of powerful keyboard shortcuts that make coding a breeze. Here are some of the key shortcuts you'll find in CodeMad: Copy (Ctrl+C) : Duplicate text with ease. Paste (Ctrl+V) : Quickly insert copied content into your code. Undo (Ctrl+Z) and Redo (Ctrl+Y) : Correct mistakes and s...

Product of Array Except Self in Python | Prefix & Suffix Explained (LeetCode 238)

Problem Overview The Product of Array Except Self is a classic problem that tests your understanding of array traversal and optimization. The task is simple to state but tricky to implement efficiently. Given an integer array nums , you need to return an array such that each element at index i is equal to the product of all the elements in nums except nums[i] . The challenge is that: Division is not allowed The solution must run in O(n) time Initial Thoughts At first glance, it feels natural to compute the total product of the array and divide it by the current element. However, this approach fails because division is forbidden and handling zeroes becomes messy. This pushed me to think differently — instead of excluding the current element, why not multiply everything around it? That’s where the prefix and suffix product pattern comes in. Key Insight: Prefix & Suffix Products For every index i : Prefix product → product of all elements to t...