2

I'm trying to debug a 3rd party app with an Android Studio.

When I'm at the smali code, new-array v1, p1, I want to access p1 value. When I evaluate p1, it says p1 = byte[]@13648. After new-array v1, p1, v1 is 35.

How can I see the content of p1?

enter image description here

Carol Ward
  • 699
  • 4
  • 17

1 Answers1

2

You can inspect its content after clone().

youfu
  • 1,547
  • 3
  • 15
  • 21