adb 명령어로 안드로이드 스튜디오에서 디버깅이나 프로파일링을 할 수 있다.
adb devices
adb -s (device ID) install (apk path)
adb logcat
adb shell am start -n (path)
다른 Intent로 전환할 때 shell 명령어를 사용하면 편리하다.
[debugable]
~\ndk\29.0.13113456\toolchains\llvm\prebuilt\windows-x86_64\bin\lldb.exe
platform select remote-android
platform connect tcp://localhost:1234
process attach --name procname --waitfor
adb shell /data/local/tmp/lldb-server platform --server --listen tcp://*:1234