auermich93
auermich93
Can you supply the APK?
Thanks for supplying the APK. I could re-produce the issue with apktool version 2.6 and 2.6.1. I could also successfully decode the APK using version 2.5.1: ``` > Task :brut.apktool:apktool-cli:Main.main()...
Unfortunately not: ``` > Task :brut.apktool:apktool-cli:Main.main() FAILED I: Using Apktool 2.6.2-7e71ad-SNAPSHOT on EmailPlus-ACe-4.1.0.0.74-9.3.0.0.p.apk I: Loading resource table... Exception in thread "main" java.lang.StringIndexOutOfBoundsException: begin 0, end 24, length 13 at java.base/java.lang.String.checkBoundsBeginEnd(String.java:3734)...
Well, there are plenty of tutorials out there. Just have a look at: https://stackoverflow.com/questions/29051781/convert-java-file-to-smali-file [](https://github.com/ollide/intellij-java2smali#intellij-java2smali)intellij-java2smali is a plugin for your IDE, simply have a look at the README how to...
I resolved the issue on my own, I have updated to Java15 since this is a pure java application except that single class I need to convert to smali. Downgrading...
I was playing around with different java versions and I noticed that Java11 is working as well under certain circumstances. It is working within IntelliJ. However, when I try to...
Unfortunately, the issue is more severe than I thought. It was a false conclusion that Java11 is working out-of-the-box within IntelliJ. It highly depends on what you actually build and...
Nice that you can confirm my results. Yes, the code is actually running on Android devices. My java application is instrumenting an APK. In particular, I inject a custom tracer...
Thanks for investing your time into this issue. I tested the following within IntelliJ and Java15 as compiler: I created dummy methods and included in each a specific language feature....
I tested the same thing on API 30. It's not anymore the verification error, but a warning followed by a NoSuchMethodError: `Accessing hidden method Ljava/lang/invoke/LambdaMetafactory;->metafactory(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite; (blacklist, linking, denied)` ``` 2021-04-26...