-
Notifications
You must be signed in to change notification settings - Fork 70
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
Index.html page is empty #60
Comments
Hello @girish3 |
I do not think that this an issue. But I ran into the same trap. The package name must not be equal the bundle identifier. I do not know why, but I entered my bundle identifier to the |
There is a bug when running on Windows that could explain such behaviour. A path filter is generated using system path delimiter. This filter is then used both for filtering folders in smali output directory (good) and for parsing found class paths when processing individual smali files (bad). In the decompiled smali code "/" package delimiter is used thus on a Windows machine filtering out everything since the filter is using "\" system path delimiter. Modifying the code to use separate filters for system/smali paths fixes the problem. I can imagine this bug does not appear on Linux since the separator is the same. |
Having the same issue. The output generated seems to be OK, just that the dependencies is empty.
Where should I modify this? Any clue? |
I run into same issue. filters.json where "a.b.c" is my applicationId and package: command: result: analyzed.js: |
Following @Heavylama comment I fixed it but changing your code from: Main.java:
to:
where makeSmaliPathFilter() is:
Now after recompile I received correct dependencies graph. @alexzaitsev Windows. tl;dr i replaced \. with / for smali path filter. |
I got the following terminal output after running the command,
But after opening the index.html file, I can see the setting view on top right but the page is empty.
The text was updated successfully, but these errors were encountered: