You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/NativeAOT/README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,8 @@ Once `lldb-server` is up and running, you will want to run up the app using the
23
23
adb shell am start -S --user "0" -a "android.intent.action.MAIN" -c "android.intent.category.LAUNCHER" -n "net.dot.hellonativeaot/my.MainActivity" -D
24
24
```
25
25
26
-
The `-D` is important as it stops the app from running until the java debugger is attached.
26
+
The `-D` is important as it stops the app from running until the java debugger is attached. If you do not want to the app to pause on startup, you can omit the `-D` argument.
27
+
27
28
Now that the app is running we need to get the process id.
Next you need to attach the java debugger to clear the dialog which is currently blocking the
52
-
application execution.
52
+
Next you need to attach the java debugger to clear the dialog which is currently blocking the application execution. You can skip this step if you omited the `-D` when
0 commit comments