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
Jadx decompiles to java, not to kotlin. Java has nothing like kotlin object. Internally, they are compiled as a java singleton by storing a single instance on a static member called INSTANCE, as you see here.
(This is familiar to anyone who has had to use kotlin objects from java before. If you called this from a java class, you'd also have to write MyLog.INSTANCE.i(...) )
The decompilation output is correct, there is no error. Or what do you mean?
Issue details
kotlin code
decompile:
expectation(log2):
myLog.i(tag, "r " + taskName + " c " + cost + " t " + type);
actual result:
env:
kotlinOptions.jvmTarget = "11"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22"
agp:8.1.4
Relevant log output or stacktrace
No response
Provide sample and class/method full name
No response
Jadx version
1.5.1
The text was updated successfully, but these errors were encountered: