You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found some apks even have v54. recompiling the apk will success if I change the smali nothing. but recompiling the apk will fail if I change the samli anything.
The maximum allowed register in this context is list of registers is v15
I don't know why. How can I ingore the smali error when recompile the apk.
@qyzhaojinxi You mix here things up. We are talking here about the dex version 41 and not about (local) registers that are labeled v0 to vN. The problem you have btw is that you use an instruction in combination with a register that is out of range, e.g., the regular invoke instruction can only address v0 to v15 as operands.
The following cl turns on the dex v41.
"Enable dex container (DEX v41) for the whole system"
https://android-review.git.corp.google.com/c/platform/build/soong/+/2853426
The text was updated successfully, but these errors were encountered: