When using Sencha Touch, it is common to encounter issues related to missing files. In most cases, simply including the file resolves the issue. However, there are instances where the problem lies in a faulty include, requiring you to locate where the file is being requested. This can be challenging as Sencha Touch does not provide information about the exact location of the require statement.
I am currently facing a similar issue with another file in my project. Despite trying various methods to remove the file from my project, Sencha Touch continues to search for it. I have attempted:
- Searching specifically in the locations where it was included
- Checking in bootstrap.js
- Performing a global search for the file name
- Rebuilding the project using Sencha CMD (which still complains about the same problem)
- Clearing cache and performing a hard reload in Chrome
- Testing in other browsers, which result in even worse crashes
Does anyone have any tips or tricks for finding remaining requires in Sencha Touch?