ThexXTURBOXx / dex2jar

Tools to work with android .dex and java .class files
Apache License 2.0
229 stars 57 forks source link

WARN: Ignored invalid inner-class name, treat as anonymous inner class #5

Closed RussiaVk closed 3 years ago

RussiaVk commented 3 years ago
dex2jar C:\Users\RUSSIAVK\Desktop\apk\alipay_wap_main.apk -> .\alipay_wap_main-dex2jar.jar
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1AfterExitAppRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1CompleteRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1FinishAppRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1WaitActivityDestroyRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1AfterExitAppRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1FinishAppRunnable)
WARN: Ignored invalid inner-class name, treat as anonymous inner class. (1WaitActivityDestroyRunnable)

APK FILE :https://t.alipayobjects.com/L1/71/100/and/alipay_wap_main.apk

ThexXTURBOXx commented 3 years ago

This actually sounds reasonable. It's just a warning, so you can ignore it :) The class names are invalid since they start with a number. The only fix I could apply is to remove the number, but this will cause various sorts of other bugs. So, I won't bother fixing this as of now. Thanks for reporting anyways!