-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dex2jar: use classes as android library? #615
Comments
Three possibilities:
Overall, you have not provided enough data to figure this issue out yet - no mention of the specific symbol name or anything. |
Thanks for the reply!
This produces the following error: /home/mhous33/AndroidStudioProjects/RetroRazr/app/src/main/java/com/motorola/retrorazr/RazrApplication.java:24: error: cannot find symbol Let me know if I can provide any more details! |
|
Thanks for the info! I will have to try a different approach. |
I am trying to rebuild an apk in android studio that I decompiled with jadx.
The apk depends on a deprecated version of the koin dependency injection framework.
I have tried adding current koin dependencies to my build.gradle, but it does not resolve the dependencies.
I have also tried adding the koin java source to the project, but the source does not compile.
So I had the idea to use dex2jar to get the koin class files and build a standalone jar to add to my project.
I think I have done this correctly, as the koin import statements are satisified, however, when I try to build the apk, android studio throws the error: "error: cannot find symbol" referring to one of the classes in the koin jar library.
Any ideas as to why this is not working?
The text was updated successfully, but these errors were encountered: