-
Notifications
You must be signed in to change notification settings - Fork 12
Description
First of all, thank you for the great tool!
I have a question about the performance of the software. I am trying to use the guidance provided in the output:
Finding modules...
[!] No modules were found!
[!] Possible reasons:
[!] - The React Native app is unbundled. If it is, export the "js-modules" folder from the app and provide it as the --js-modules argument
I am sure the app is bundled, as I can see the following files in the folder:
0.xxxx.chunk.js -> 23.xxxx.chunk.js
main.xxx.chunk.js
runtime-main.xxx.js
[!] - The bundle is a binary/encrypted file (ex. Facebook, Instagram). These files are not supported
It does not appear to be an encrypted/binary file, as I can see meaningful (in business-sense) variable names inside the chunks
[!] - The provided Webpack bundle input is not or does not contain the entrypoint bundle
I have tried to run the script on the following files:
main.xxx.chunk.js
runtime-main.xxx.js
I can't imagine there being another entry point, as all the present filenames are listed above. It has to be one of these, unless I am mistaken
[!] - The file provided is not a React Native or Webpack bundle.
The file contains the following string, so I assume that it is a Webpack bundle:
var f = window.webpackJsonp
Is there anything else I can check?
Thank you in advance