Hi all,
So I created a new project (it's a Ti Desktop project but that's neither here nor thereI think), and when my client was ready I moved the project files to a new Git repo, deleted my local copy and then attempted to re-import it from the new location using Titanium Studio -> Import Existing Project.
Whenever I try to import the project though, I get this error: http://i.imgur.com/6TRic.png
I can copy and paste the project files to a totally different directory on my Mac and it will import just fine, but when I try to import from that local Git directory I just get that error, and it creates an empty project folder in the old project location.
Is there some kind of . settings file I'm not aware of for Studio that I can fix? It seems like it's storing the location of the project somewhere on my machine that I'm not aware of and not letting me move it.
1 Answer
Accepted Answer
There is a .project file that you missed copying across:
It should look something like this:
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>MY_PROJECT</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>com.aptana.ide.core.unifiedBuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>com.appcelerator.titanium.core.builder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>com.appcelerator.titanium.desktop.nature</nature> <nature>com.aptana.projects.webnature</nature> </natures> </projectDescription>
Your Answer
This question has been locked and cannot accept new answers.