1

I'm working on understanding some smali code and I'm trying to understand a variable declaration. The code is:

.field protected static final VARIABLE_NAME:B = 0x16t

I understand the variable must be a byte, but what does the "t" mean afterwards?

Thanks!

Patrick Xu
  • 15
  • 2

1 Answers1

0

t is the suffix for a byte literal.

t - byte
s - short
l - long
f - float
d - double
JesusFreke
  • 19,784
  • 5
  • 65
  • 68