Reputation: 176
Few days back my Hard Drive courrupted due to this I lost my whole project files. I have an .apk file of that project.
but problem is that the .apk files contain 100% Kotlin language. I found one way to decompile code, but bad luck it doesn't decompile back to Kotlin code. After decompiling I got some weird type written .java classes.
Please help me how can I decompile my .apk file, it was a very important project for me. Is any way please suggest :)
Upvotes: 7
Views: 7633
Reputation: 1011
To decompile Kotlin code from an APK file, you may use a few tools that are available.
FernFlower: Kotlin code may be decompiled using FernFlower, a Java decompiler. The APK file may be decompiled using FernFlower to produce Java code, which can then be converted back to Kotlin code using a tool like IntelliJ IDEA.
there some more online websites you search on google and also use apk easy tool in windows to decompile source code.
Upvotes: 1