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
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
#628
Open
vramasam opened this issue
Sep 27, 2024
· 0 comments
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
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.
The text was updated successfully, but these errors were encountered: