I have tried everything and the Android debugging still will not work. On my phone it says "Waiting for Debugger" in a alert box but when I try to attach the debugger it does not allow me. I can receive logcat messages but cannot look at cpu usage and memory usage. I also have tried to use DDMS but that also does not work.
I have tried the following:
- I added
debuggable trueto build.gradle - I enabled ADB integration
- Updated Android Studio to latest version
- Updated SDK Tools to latest version
- Added
<uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission>to manifest - Enabled USB debugging on phone
- Restarted Android Studio and ran
adb kill-server - Restarted Phone and Computer
- Tried different USB ports on computer
- Disabled ADB integration and enabled it multiple times
Is there anything else I can try?
