No log messages in Titanium Developer after installing iOS SDK 4.3.1

You must Login before you can answer or comment on any questions.

I have installed iOS SDK 4.3.1 and I have no log messages in Titanium Developer.

I tried the previous hotfix (http://developer.appcelerator.com/blog/2010/07/introducing-titanium-mobile-1-4.html), set the chmod, but I can't get it to work.

Any ideas?

— asked 1 year ago by Sebastian Klaus
4 Comments
  • The same problem :(

    — commented 1 year ago by Aliaksandr Kanaukou

  • Me 3. Installed Xcode 4.0.2, have Ti Dev 1.2.2 & SDK 1.6.2. Now no console log w/ new iPhone Simulator 4.3:(8H7). But using iOS SDK 4.2 have log msgs.

    — commented 1 year ago by Kon Lovett

  • Same problem here.

    — commented 1 year ago by Mario Müller

  • Show 1 more comment

2 Answers

Accepted Answer

I solved this (silly) problem by the following method, which is 'softer' and involves no code changes:

Go to ~/Library/Application Support/iPhone Simulator/

Create a 'soft link' from 4.3 to 4.3.2, which I had (ln -s 4.3.2 4.3 - Maybe a regular alias could do it as well.).

Works perfectly now. I don't know if that would work between minor versions, such as 4.1 to 4.2, but it's a probably a bug with picking up revision numbers after the minor version.

— answered 1 year ago by Kevin Teljeur
answer permalink
2 Comments
  • what you forgot: you have to delete the 4.3 folder first, then create the symlink. that works for me perfect! thanks

    — commented 1 year ago by Sebastian Klaus

  • The path ~/Library/Application Support/iPhone Simulator/ doesn't exist on my Mac, how did you get this to work??

    — commented 12 months ago by Justin Toth

Try patch /Library/Application\ Support/Titanium/mobilesdk/osx/1.6.2/iphone/logger.py 61a62,71 > if iphone_version == '4.3': > # i dunno, how many of these will they do? > for v in ('4.3.2','4.3.1'): > if os.path.exists(os.path.expanduser("~/Library/Application Support/iPhone Simulator/%s"%v)): > # Apple broke version in 4.3.x where they return 4.3 instead so we need to try and see if they > # have the patch installed > print "[INFO] Found %s patch installed" % v > path = "~/Library/Application Support/iPhone Simulator/%s" % v > break >

This is the major.minor iphone_version but major.minor.build directories redux.

— answered 1 year ago by Kon Lovett
answer permalink
2 Comments
  • Tried your patch and got: -bash: syntax error near unexpected token `newline'. Not very familiar with the way patch works so I'm not sure how to proceed.

    — commented 1 year ago by nick c

  • Sorry. Meant "a patch" & not "a patch command". Edit the indicated file & paste the lines at the indicated line # (removing the `> ' prefix). Should have been clear or provided a "real patch."

    — commented 1 year ago by Kon Lovett

Your Answer

Think you can help? Login to answer this question!