I used dex2jar to get jar from an apk and to view it used JD-GUI .
But I notice there are label symbols such as following,
if (this.data.length != 7)
break label279;
// more code here
label279: short[] aos = { 0, 0 };
is it something added by compiler(or Obfuscate) ? is there any other tool that could use to avoid these labels?
is it something relate for this cleaning ?
Further research:
From the above code by natural observation I changed the code to :
Still the
label100
remains as a mystery... Wondering how does dex2jar handles the situations when it is unaware of the code.the existence of
:
operator also suggests that there might be afor each
loopIf at some point in future this mystery is resolved then please notify me too.
thanks.