Reputation: 3183
After I upgraded Titanium Studio to 3.2, whenever I build a project with SDK v. 3.2.0.GA the underlying XCode project is built from the start. This is a real pain as I have added external libraries on the XCode project and they get lost each time.
On previous versions, Studio was not doing a full rebuild so it was not even necessary to compile the project.All that was needed was to do changes, go to the emulator close the app and then reopen it.
Trying to install a pre-3.2 sdk version causes the following error Titanium SDK 3.2 [ERROR] : Invalid "--ios-version" value "7.0" 7.0.3
Could it be a flag or something else on the Studio preferences that I am missing?
Upvotes: 2
Views: 112
Reputation: 1963
Try to clean the project first (or just remove the "build" folder) and have the latest titanium
cli (npm install -g titanium
).
In case you have a custom Info.plist
in your project try to build the proyect without it. If it works, then is something with it.
Upvotes: 0