https://github.com/redth/jdwpdotnet
JDWP (Java Debug Wire Protocol) Implementation in .NET
https://github.com/redth/jdwpdotnet
Last synced: about 1 year ago
JSON representation
JDWP (Java Debug Wire Protocol) Implementation in .NET
- Host: GitHub
- URL: https://github.com/redth/jdwpdotnet
- Owner: Redth
- License: mit
- Created: 2023-02-24T17:03:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T11:54:59.000Z (over 2 years ago)
- Last Synced: 2025-05-13T23:48:13.045Z (about 1 year ago)
- Language: C#
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JDWP for .NET
JDWP (Java Debug Wire Protocol) Implementation in .NET
1. Launch your app with `-D` in the `am start` command, for example:
```
adb shell am start -a "android.intent.action.MAIN" -c "android.intent.category.LAUNCHER" -n "com.companyname.mauiapp14/crc6448f7deee554f6954.MainActivity" -D
```
2. You should see the app launch with a dialog indicating it is waiting for a debugger connection.
3. Run the sample app and type in the package name (in the example above it's `com.companyname.mauiapp14`).
4. The JDWP debugger should connect now, the waiting dialog should go away, and the app should resume launching!