#628·dex2jar

inconsistent stack height Index 2 out of bounds for length 2 - with snapshot 2.2 not getting this error with snapshot 2.3 and 2.4 getting this error

Author: vramasamCreated Sep 27, 2024Updated Sep 27, 2024

Hello @ThexXTURBOXx @pxb1988

Can you please help in find the root cause for this issue. I am trying to upgrade from 2.2 SNAPSHOT to 2.3 SNAPSHOT but I am getting "inconsistent stack height Index 2 out of bounds for length 2".

For more information the affected method is having "try" "catch" Method that creates problem " public void writeToFile(FileOutputStream fos) { try { String string = "This is a sample string for View and Edit Intent"; fos.write(string.getBytes()); fos.flush(); fos.close(); } catch (Exception e) { Log.e(TAG, e.getMessage(), e); } }"

What is the change from SNAPSHOT 2.2 to 2.3 can create this issue and also can you please help how to resolve this issue

I have tried this fork also https://github.com/ThexXTURBOXx/dex2jar I got the same issue.