-
Is there any api to get mapping of jimple varible names generated from StmtGraph like l0,l1,l2 to the actual variable names i have defined? |
Beta Was this translation helpful? Give feedback.
Answered by
brenhub24
Aug 12, 2024
Replies: 1 comment 2 replies
-
Jimple is generated from the bytecode. If your bytecode doesn't have local variable names then there's no way Jimple has them. Maybe try to compile your bytecode with |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
SmakshiA
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jimple is generated from the bytecode. If your bytecode doesn't have local variable names then there's no way Jimple has them.
See https://stackoverflow.com/questions/15357717/why-my-compiled-class-has-its-methods-local-variables-renamed
Maybe try to compile your bytecode with
-g
or-g:vars
?