I am trying to solve a little problem since yesterday, but no solution found yet, I have everything installed for Titanium Mobile on my Ubuntu 10.04 LTS, but i still couldn’t figure out where exactly i need to add a module. All the documentations talks about installing the module in /Library/Application Support/Titanium/modules on MacOS which i don’t have in Ubuntu.
I added the module under ~/.titanium/modules after extracting it from the zip, also added in tiapp.xml
<modules>
<module version="0.3">com.googlecode.quicktigame2d</module>
</modules>
but i still get the error
Requested module not found : com.googlecode.quicktigame2d
any help is appreciated.
The problem is in name of module file. This is the problem for all Titanium modules on Ubuntu and other Linux systems because they are case sensitive for file names.
Just change (for example module):
To
Hope this will help you.