skylot
skylot
@sumauto without loading all classes, some information will be missing and decompilation result can be different from full decompilation or view in jadx-gui and this can be confusing. Here are...
@Bourne-Koloh looks like resources file (`.arsc`) not found, can you share apk file you are using? https://github.com/skylot/jadx/blob/2d28da9b0e2b704a77946dcd5ef409d46944e2b2/jadx-core/src/main/java/jadx/core/export/ExportGradleTask.java#L44-L47 Related to #1918
> [lib.aar.zip](https://github.com/skylot/jadx/files/13418465/lib.aar.zip) Oh, thanks! I always forget about AAR files :slightly_frowning_face:
Well, I am actually considering using Kotlin in jadx-gui and already write some code and modules using it to support scripting in jadx. Anyway, my proficiency in Kotlin is not...
> Would you be willing to accept some PR that converts some of the existing classes to kt Hm, in most cases conversion is trivial using Idea auto convert action,...
@moroal looks like 2 and 3 not highlighted at all. Same names don't get highlighted if the cursor at the end of a word. This can be considered as an...
I fixed highlighting if cursor set at word end. This also simplify execution of code actions (like rename) for one letter identifiers. @moroal I am not sure if this is...
Yeah, looks like `Unreachable block` error quite often now. Will try to fix this with top priority ```java /* JADX ERROR: JadxRuntimeException in pass: BlockProcessor jadx.core.utils.exceptions.JadxRuntimeException: Unreachable block: B:67:0x014b at...
Thanks for nice test case, it is related to #597, similar code with issue explanation in comments: ```java Thread timer = new Thread() { // can't use anonymous class as...
@kelvinwop increasing limit will not help because this check is just a way to stop endless loop in case if something going wrong. If you share the sample, I will...