Carol Ward
Carol Ward

Reputation: 731

Android Studio Debug How to view byte variable

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

Upvotes: 2

Views: 823

Answers (1)

youfu
youfu

Reputation: 1627

You can inspect its content after clone().

Upvotes: 2

Related Questions