User Rhythmic Fistman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:47:52Z http://stackoverflow.com/feeds/user/22147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1041666/is-it-possible-to-both-play-a-sound-and-record-from-the-microphone-at-the-same-ti/1793014#1793014 0 Answer by Rhythmic Fistman for Is it possible to both play a sound and record from the microphone at the same time on the iPhone? Rhythmic Fistman 2009-11-24T21:24:04Z 2009-11-24T21:24:04Z <p>You can use either a core audio unit or an audio queue, and you need to make sure that your audio session category is set to <code>kAudioSessionCategory_PlayAndRecord</code>.</p> <p>Beware that sound output when you use this session is much quieter than the normal solo session (observed on 3.0).</p> http://stackoverflow.com/questions/1057054/how-to-avoid-deadlocks/1057088#1057088 1 Answer by Rhythmic Fistman for How to avoid deadlocks? Rhythmic Fistman 2009-06-29T08:01:44Z 2009-11-17T12:09:30Z <p>When I work in C++, the following works for me:</p> <ol> <li><p>all public methods (excluding ctor and dtor) of a threadsafe class lock</p></li> <li><p>private methods cannot call public methods</p></li> </ol> <p>It's not a general deadlock avoidance method.</p> http://stackoverflow.com/questions/197383/locating-bundles-by-identifier 2 Locating bundles by identifier Rhythmic Fistman 2008-10-13T12:23:03Z 2009-10-17T20:40:37Z <p>I want to create a bundle from an arbitrary bundle identifier<br /> e.g. <code>com.apple.iokit.IOStorageFamily</code> </p> <p>It's not an unreasonable thing to do as bundle IDs are supposed<br /> to be unique, however the obvious code does not work:</p> <pre><code>NSString* bID = @"com.apple.iokit.IOStorageFamily"; NSBundle* bundle = [NSBundle bundleWithIdentifier:bID]; </code></pre> <p>This code only works for bundles you've already loaded<br /> (hello, chicken and egg problem), and in fact, you have<br /> to know a little more than you'd like about the the identifier<br /> before you can do anything. For the above style of ID<br /> I grep out the final component and tranform it into<br /> <code>/System/Library/Extensions/IOStorageFamily.kext</code><br /> which I then load by path. </p> <p>Is this the state of the art or is there a more general way? </p> http://stackoverflow.com/questions/194628/distinguishing-between-hfs-and-hfs-standard-volumes 0 Distinguishing between HFS+ and HFS Standard Volumes Rhythmic Fistman 2008-10-11T20:55:53Z 2009-10-13T23:45:25Z <p>IOKit and the DiskArbitration framework can tell me a lot of things about mounted volumes on a mac, but they don't seem to be able to differentiate between HFS+ and HFS Standard volumes. </p> <p>The IOKit/DA keys <code>Content</code>, <code>DAVolumeKind</code> and <code>DAMediaContent</code> are always Apple_HFS and hfs for both HFS Standard and HFS+ volumes.</p> <p>diskutil and DiskUtility.app <em>can</em> tell the difference, but I they don't seem to have been open sourced by Apple. </p> <p>p.s. statfs (2) does not differentiate</p> http://stackoverflow.com/questions/1399885/debugging-app-on-iphone-and-now-i-get-this-error-unknown-packet-reply-timeout/1404073#1404073 0 Answer by Rhythmic Fistman for Debugging App on Iphone and now i get this error: unknown packet reply: "timeout" to environmental package Rhythmic Fistman 2009-09-10T08:30:23Z 2009-09-10T08:30:23Z <p>Is this in the XCode Debugger console?</p> <p>You could be running the Release version.<br /> Only the Debug build can pipe stdout/stderr back to XCode.</p> http://stackoverflow.com/questions/1271250/detecting-multitouch-iphone-like-tap-on-macbookpro 0 Detecting multitouch iPhone-like "tap" on MacBookPro Rhythmic Fistman 2009-08-13T10:49:09Z 2009-08-20T17:02:50Z <p>After a period of iPhone work, I'm once again working on normal Cocoa apps on my MBP<br /> and I miss the "tap" gesture. I know that I can turn on the incredibly annoying "Tap to Click",<br /> feature in the Trackpad control pannel, but I don't want a click, I want a tap.</p> <p>I know it's probably not mac canon, but is it possible to receive this multi-touch style event?</p> http://stackoverflow.com/questions/1215908/do-i-have-to-support-jailbroken-iphones 5 Do I have to support jailbroken iPhones? Rhythmic Fistman 2009-08-01T05:37:06Z 2009-08-17T11:45:08Z <p>We're days away from submitting our first app to the appstore and last night I was horrified to hear that it does not work on jailbroken devices. I got a few seconds with the device and saw the OS version, and free memory available (36MB, I guess that's low).</p> <p>Should I care?</p> <p>Presumably jailbreak users can buy the app and write scathing reviews. If so and jailbroken iPhones are common, then the iPhoneJB becomes a de facto shadow-platform that I'm obliged to support.</p> <p><strong>EDIT</strong></p> <p>I got some ball park figures, sounds like I should care about the new de facto shadow platform. So either I can try reducing memory requirements and cross my fingers, or get out the credit card and go get me an illicit iPhone.</p> <p>I'm not happy to have been put in this situation, yet another example of being left in the lurch by Apple. Thanks, guys.</p> http://stackoverflow.com/questions/1253145/how-to-use-opengl-es-on-a-separate-thread-on-iphone/1254235#1254235 3 Answer by Rhythmic Fistman for How to use OpenGL ES on a separate thread on iphone? Rhythmic Fistman 2009-08-10T10:50:27Z 2009-08-10T10:50:27Z <p>You need to create an <code>EAGLSharegroup</code>.</p> <p>Check out <a href="http://www.iphonedevsdk.com/forum/iphone-sdk-game-development/7479-loading-texture2d-parallel-thread.html" rel="nofollow">this thread</a> on sharing OpenGL contexts between threads.</p> http://stackoverflow.com/questions/1248569/iphone-increase-volume/1248676#1248676 0 Answer by Rhythmic Fistman for iPhone: Increase volume Rhythmic Fistman 2009-08-08T11:53:52Z 2009-08-08T11:53:52Z <p><code>player.volume = 2.0;</code></p> <p>The doco says that volume is "nominally" between 0 and 1.0,<br /> which seems to suggest that you can overdrive it.</p> <p>Good luck, and try not to accidentally deafen users.</p> http://stackoverflow.com/questions/1242031/is-it-possible-to-let-the-iphone-system-time-run-faster-for-a-moment/1248628#1248628 0 Answer by Rhythmic Fistman for Is it possible to let the iPhone system time run faster for a moment? Rhythmic Fistman 2009-08-08T11:35:23Z 2009-08-08T11:35:23Z <p>I asked a <a href="http://stackoverflow.com/questions/1122616/when-does-a-touchesbegan-become-a-touchesmoved">similar question</a>, still open.</p> <p>I don't think there's a way around it for now, seeing as even the ultra lickable "slide to unlock" slider suffers from the problem.</p> <p>At this point I think the only solution is try smoothing this initial bump out with a bit of position interpolation. </p> http://stackoverflow.com/questions/1234528/iphone-opengl-es-texture2d-masking/1237819#1237819 0 Answer by Rhythmic Fistman for iPhone OpenGL ES Texture2D Masking Rhythmic Fistman 2009-08-06T09:16:08Z 2009-08-06T09:16:08Z <p>For something that will actually work on the iPhone, try <a href="http://www.opengl.org/wiki/Texture%5FCombiners" rel="nofollow">texture combiners</a>.</p> <p>I used them to mask an RGBA texture against another, transformed alpha texture.<br /> This was for generating a complicated shadow in the absence of a stencil buffer,<br /> but your situation doesn't seem so different.</p> <p>Note that this link explains combiners in terms of fragment shaders, which works well.<br /> Unfortunately the combiners are more complicated than their shader counterparts.</p> http://stackoverflow.com/questions/1231716/mod-player-for-iphone/1237764#1237764 0 Answer by Rhythmic Fistman for Mod Player for iphone Rhythmic Fistman 2009-08-06T09:05:25Z 2009-08-06T09:05:25Z <p><a href="http://www.algonet.se/~afb/mikmod/macosx-player.zip" rel="nofollow">MikMod</a> for the mac uses CoreAudio, so it might "just work" on the iPhone.</p> http://stackoverflow.com/questions/1237565/iphone-cgcontextshowtextatpoint-for-japanese-characters/1237631#1237631 1 Answer by Rhythmic Fistman for Iphone CGContextShowTextAtPoint for Japanese characters Rhythmic Fistman 2009-08-06T08:33:47Z 2009-08-06T08:39:11Z <p>Hi, you need to use UIKit for this. </p> <p>Check out <code>[NSString drawAtPoint:...]</code> to get started.</p> <p>This <a href="http://stackoverflow.com/questions/906767/drawing-unicode-characters-on-iphone/906976#906976">SO question</a> is useful, too. </p> <p>I don't know what they were thinking with the CoreGraphic text stuff, it's useless.</p> http://stackoverflow.com/questions/1223230/opengles-texture-disappears/1223869#1223869 1 Answer by Rhythmic Fistman for OpenGLES texture disappears Rhythmic Fistman 2009-08-03T18:25:21Z 2009-08-03T18:25:21Z <p>Are you calling <code>+ (BOOL)setCurrentContext:(EAGLContext *)context</code>; on the context of each view before drawing?</p> http://stackoverflow.com/questions/1221432/when-does-default-png-get-erased 0 When does Default.png get erased? Rhythmic Fistman 2009-08-03T09:34:22Z 2009-08-03T09:45:25Z <p>A Default.png in your application directory looks like a good way to get a zoom-in splash screen "for free". Zero LOC and everything happens before your <code>applicationDidFinishLaunching</code> gets called so your app launch feels snappy.</p> <p>Unfortunately it erases itself a bit earlier than I would like: sometime after <code>applicationDidFinishLaunching</code>, but before I start drawing.</p> <p>Does anyone know when it happens and I how can convince it to stay longer? </p> http://stackoverflow.com/questions/984410/iphone-os-testing-best-practices/985965#985965 0 Answer by Rhythmic Fistman for iPhone OS Testing Best Practices Rhythmic Fistman 2009-06-12T10:07:20Z 2009-08-01T05:13:20Z <p>Get all the combinations is the short answer.</p> <p>I started out with just the iPod, but it's 100MHz faster than the previous iPhone model. My app's performance sensitive, so I'm gonna have to get an old iPhone. I can hardly ask my beta testers (volunteers?) to run the GL performance tool.</p> http://stackoverflow.com/questions/1213844/when-it-comes-to-developing-for-the-iphone-should-i-use-git-or-subversion/1214816#1214816 7 Answer by Rhythmic Fistman for When it comes to developing for the IPhone, should I use Git or Subversion? Rhythmic Fistman 2009-07-31T20:47:19Z 2009-08-01T04:45:57Z <p>Definitely git. I've learnt two new things this year: iPhone programming and git. Whilst iPhone programming has made me hate my life, git has improved the way I develop software. The painless branching has meant that I can make a branch for <em>everything</em>, without telling the rest of the world, and when I'm completely satisfied with it I can merge it back into our wonderfully stable master/trunk. </p> <p>It's great, there's no pressure to release anything that isn't ready and seeing as you can check in locally, it's easier to sculpt small, useful commits.</p> <p>I'm still undecided on the iPhone thing.</p> http://stackoverflow.com/questions/1212964/how-to-get-this-value-as-a-cgfloat/1213167#1213167 5 Answer by Rhythmic Fistman for How to get this value as a CGFloat? Rhythmic Fistman 2009-07-31T15:24:27Z 2009-07-31T15:24:27Z <p>Try </p> <pre><code>NSNumber* n = [self.layer valueForKeyPath:@"transform.rotation.z"]; CGFloat f = [n floatValue]; </code></pre> http://stackoverflow.com/questions/1206761/iphone-versus-android-developer-results/1207090#1207090 1 Answer by Rhythmic Fistman for iPhone versus Android : Developer results Rhythmic Fistman 2009-07-30T14:46:17Z 2009-07-30T14:46:17Z <p>I've got no experience with the Android platform, but I'm super curious.</p> <p>I am an iPhone fan, but it's a state of the art "NO" platform because most of the answers to interesting questions are NO. </p> <p>It's kinda negative and wearing.</p> <p>However, coming from the iPhone, the idea of an open platform sounds<br /> like a PITA. How big's the screen? How much RAM, etc. etc. I'll miss<br /> the homogeneity. </p> <p>Is this what Stockholm syndrome feels like?</p> http://stackoverflow.com/questions/1199312/number-of-commits-in-a-git-repository 4 Number of commits in a git repository Rhythmic Fistman 2009-07-29T10:38:06Z 2009-07-29T15:30:07Z <p>A 5 month project of mine is nearing its end and as a fan of pointless statistics,<br /> I'd like to know how many commits have been made since the repository's inception.</p> <p>How do I find that out?</p> <p>Notes:</p> <ol> <li><p>I know there is no <em>one</em> repository, I'm just interested in the local version.</p></li> <li><p>This is trivial in subversion, as the revision identifier seems to be the commit number.</p></li> </ol> http://stackoverflow.com/questions/1197397/iphone-sdk-how-to-play-music-and-record-from-the-mic-at-the-same-time/1198285#1198285 1 Answer by Rhythmic Fistman for iPhone SDK: how to play music and record from the mic at the same time? Rhythmic Fistman 2009-07-29T06:08:26Z 2009-07-29T06:44:32Z <p>You set your audio session to <code>kAudioSessionCategory_PlayAndRecord</code><br /> and create an in/out remote io audio unit.</p> <p>The "loopy" author talks about how to do this <a href="http://michael.tyson.id.au/2008/11/04/using-remoteio-audio-unit/" rel="nofollow">here</a> and provides code.<br /> The trailblazing tones of the article are slightly dated now.</p> http://stackoverflow.com/questions/1195987/upside-down-text-quartz-iphone-cgcontextscalectm/1196118#1196118 1 Answer by Rhythmic Fistman for Upside down text - Quartz/iPhone - CGContextScaleCTM Rhythmic Fistman 2009-07-28T19:04:48Z 2009-07-28T19:04:48Z <p>Use <code>CGContextSaveGState</code> and <code>CGContextRestoreGState</code> to make sure<br /> that the CTM scaling applies to your graphics and not your text.</p> http://stackoverflow.com/questions/1193173/iphone-application-size/1193475#1193475 0 Answer by Rhythmic Fistman for IPhone Application Size Rhythmic Fistman 2009-07-28T11:24:43Z 2009-07-28T11:24:43Z <p>iPhone apps seem to be distributed as .ipa files, which are just thinly disguised zip files,<br /> so if you right click your app and compress it in the finder, you should have a pretty good idea<br /> of how big it will be on the iPhone.</p> http://stackoverflow.com/questions/1192952/using-applicationwillterminate-to-delay-shutdown-as-long-as-possible/1193172#1193172 1 Answer by Rhythmic Fistman for using applicationWillTerminate to delay shutdown as long as possible Rhythmic Fistman 2009-07-28T10:10:52Z 2009-07-28T10:10:52Z <ol> <li><p>You really need to test this on a real device.</p></li> <li><p>I have the feeling that you get 6 seconds to exit, after which you will be killed.</p></li> </ol> <p>By the way, <code>AVAudioPlayer</code>, might be being a good citizen and getting out of the way. It does some strange and even annoying things under the hood. In this case you'll need something lower level, like a remote io audio unit. I know for a fact that if you don't stop this in applicationWillTerminate then it will happily go on making sound for a moment in the home screen.</p> http://stackoverflow.com/questions/1191313/iphone-sound-adjust-speed-of-playback-of-audio-file-while-playing/1192037#1192037 0 Answer by Rhythmic Fistman for iPhone Sound: Adjust speed of playback of audio file while playing Rhythmic Fistman 2009-07-28T05:15:52Z 2009-07-28T05:15:52Z <p><code>AVAudioPlayer</code> doesn't give you speed control, but it does let you set the position, so you could do a poor man's speed up/reverse the same way QuickTime Player does: by jumping through the file and playing small snippets at normal speed.</p> <p>Or you decompress the samples yourself with an offline <code>AudioQueue</code> and do whatever rate you want. That's what I do.</p> http://stackoverflow.com/questions/1185480/iphone-im-trying-to-draw-a-blue-line-but-it-turns-out-red-all-the-time-why/1185523#1185523 0 Answer by Rhythmic Fistman for iPhone: I'm trying to draw a blue line, but it turns out red all the time, why? Rhythmic Fistman 2009-07-26T20:53:51Z 2009-07-26T20:53:51Z <p>Try erasing the context first. Either with <code>memset(mem, -1, nbytes)</code> or CG functions.</p> http://stackoverflow.com/questions/1185480/iphone-im-trying-to-draw-a-blue-line-but-it-turns-out-red-all-the-time-why/1185498#1185498 0 Answer by Rhythmic Fistman for iPhone: I'm trying to draw a blue line, but it turns out red all the time, why? Rhythmic Fistman 2009-07-26T20:44:58Z 2009-07-26T20:44:58Z <p>Try changing <code>kCGBitmapByteOrderDefault</code> to <code>kCGBitmapByteOrder32Big</code>, or failing that <code>kCGBitmapByteOrder32Little</code>.</p> http://stackoverflow.com/questions/1185480/iphone-im-trying-to-draw-a-blue-line-but-it-turns-out-red-all-the-time-why/1185494#1185494 0 Answer by Rhythmic Fistman for iPhone: I'm trying to draw a blue line, but it turns out red all the time, why? Rhythmic Fistman 2009-07-26T20:43:17Z 2009-07-26T20:43:17Z <p>I've seen this. I'll bet your problem doesn't reproduce in the simulator.</p> <p>This is an iPhone endian bug. </p> <p>See <a href="http://developer.apple.com/qa/qa2007/qa1509.html" rel="nofollow">qa1509</a> and use the code from listing #2.</p> http://stackoverflow.com/questions/1183366/play-alert-sound-vibrate-while-audioqueue-is-recording/1184084#1184084 0 Answer by Rhythmic Fistman for Play Alert Sound (Vibrate) While AudioQueue is Recording Rhythmic Fistman 2009-07-26T09:02:33Z 2009-07-26T09:02:33Z <p>Just a wild guess, but is your audio session set to <code>kAudioSessionCategory_PlayAndRecord</code>?</p> http://stackoverflow.com/questions/1179729/how-to-make-a-private-branch-of-public-svn-repository/1179790#1179790 5 Answer by Rhythmic Fistman for How to make a private branch of public SVN repository? Rhythmic Fistman 2009-07-24T19:45:14Z 2009-07-24T19:45:14Z <p>Google git-svn. Works well for me.</p> http://stackoverflow.com/questions/846309/reducing-piracy-of-iphone-applications/846423#846423 Comment by Rhythmic Fistman on Reducing piracy of iPhone applications Rhythmic Fistman 2009-11-28T20:53:37Z 2009-11-28T20:53:37Z I've found cracked versions of my app with the Info.plist file identical to the one I submitted to the store. This check doesn't work anymore. http://stackoverflow.com/questions/292997/can-you-set-sorcvtimeo-and-sosndtimeo-socket-options-in-boost-asio/390279#390279 Comment by Rhythmic Fistman on can you set SO_RCVTIMEO and SO_SNDTIMEO socket options in boost asio? Rhythmic Fistman 2009-11-06T17:15:04Z 2009-11-06T17:15:04Z Excellent point. I just hit this now. Sucks. http://stackoverflow.com/questions/291871/how-to-set-a-timeout-on-blocking-sockets-in-boost-asio/292183#292183 Comment by Rhythmic Fistman on How to set a timeout on blocking sockets in boost asio? Rhythmic Fistman 2009-11-04T11:01:12Z 2009-11-04T11:01:12Z Wouldn't all your socket calls, in all your threads fail with EINTR? That sounds bad. http://stackoverflow.com/questions/173870/why-cant-c-ifstreams-read-from-devices/176879#176879 Comment by Rhythmic Fistman on Why can't c++ ifstreams read from devices? Rhythmic Fistman 2009-11-03T11:04:18Z 2009-11-03T11:04:18Z Exactly right, FILE* only worked through sheer luck, so I dropped down to the file descriptor interface. Not before ripping out all the iostream code, though. I don't miss it. Hope that's not too inflammatory for SO-09! Thanks for the comment. http://stackoverflow.com/questions/577777/how-to-open-an-hfs-file-by-file-id/578022#578022 Comment by Rhythmic Fistman on How to open an HFS+ file by file ID? Rhythmic Fistman 2009-10-25T14:07:53Z 2009-10-25T14:07:53Z Got it, but opening /.vol/234881026/5 doesn't seem to work, unfortunately. Would have been a nice, if undocumented, shortcut. Thanks. http://stackoverflow.com/questions/577777/how-to-open-an-hfs-file-by-file-id/578022#578022 Comment by Rhythmic Fistman on How to open an HFS+ file by file ID? Rhythmic Fistman 2009-10-25T14:00:42Z 2009-10-25T14:00:42Z I'm trying to open the catalog file (CNID 5), however I can't figure out a volume ID. -100 doesn't seem to cut it. http://stackoverflow.com/questions/197383/locating-bundles-by-identifier Comment by Rhythmic Fistman on Locating bundles by identifier Rhythmic Fistman 2009-10-21T13:53:03Z 2009-10-21T13:53:03Z It's nice to know. The old code works, but I'll be adding KextManagerCreateURLForBundleIdentifier in a comment there somewhere. Thanks. http://stackoverflow.com/questions/728088/instruments-leaks-not-showing-my-source-code/860875#860875 Comment by Rhythmic Fistman on Instruments Leaks - Not showing my source code Rhythmic Fistman 2009-09-22T06:17:55Z 2009-09-22T06:17:55Z The script that adds symbols to your stack traces is called &quot;symbolicatecrash&quot;. It's one of the least robust pieces of code I've ever seen. It uses spotlight to [fail to] find your .dSYM, ignoring the one in your app dir, the current dir, etc. It was incorrectly quoting shell chars when I fixed my version (this was after the non-ascii work around). If you're comfortable with perl you can debug it, or just google symbolicatecrash+snowleopard. Maybe someone's fixed it good. http://stackoverflow.com/questions/728088/instruments-leaks-not-showing-my-source-code/860875#860875 Comment by Rhythmic Fistman on Instruments Leaks - Not showing my source code Rhythmic Fistman 2009-09-17T10:51:50Z 2009-09-17T10:51:50Z This helped me with 2.x style crash logs. For 3.0 style I had to learn some perl and fix the symbolicate script. There's probably a definite version by now. http://stackoverflow.com/questions/1048666/getting-the-posix-path-of-the-finders-front-window/1049768#1049768 Comment by Rhythmic Fistman on Getting the POSIX path of the Finder's front window Rhythmic Fistman 2009-09-11T11:01:58Z 2009-09-11T11:01:58Z Not a problem. Better late than never. I'm 10 months late with one answer. I should fix that now. http://stackoverflow.com/questions/1055979/what-games-gave-you-most-helpful-ideas-and-concepts-for-our-profession/1056039#1056039 Comment by Rhythmic Fistman on What games gave you most helpful ideas and concepts for our profession? Rhythmic Fistman 2009-09-08T09:53:02Z 2009-09-08T09:53:02Z Did you get all the stars? You need to get all the stars to understand dvcs. http://stackoverflow.com/questions/1271250/detecting-multitouch-iphone-like-tap-on-macbookpro/1307554#1307554 Comment by Rhythmic Fistman on Detecting multitouch iPhone-like "tap" on MacBookPro Rhythmic Fistman 2009-08-22T11:03:36Z 2009-08-22T11:03:36Z P.S. This API allows you to finally give a &quot;sorry, your fingers are too fat&quot; error. http://stackoverflow.com/questions/1271250/detecting-multitouch-iphone-like-tap-on-macbookpro/1307554#1307554 Comment by Rhythmic Fistman on Detecting multitouch iPhone-like "tap" on MacBookPro Rhythmic Fistman 2009-08-22T11:02:09Z 2009-08-22T11:02:09Z Thank you, the private 10.5 MultiTouchSupport framework, while strange, does exactly what I want. http://stackoverflow.com/questions/368014/awake-from-sleep-event-on-the-iphone/368066#368066 Comment by Rhythmic Fistman on Awake from sleep event on the iPhone? Rhythmic Fistman 2009-08-17T13:00:54Z 2009-08-17T13:00:54Z This doesn't work if the phone goes to sleep. This is gets called when the user hits the sleep/power button. (2.x) http://stackoverflow.com/questions/1215908/do-i-have-to-support-jailbroken-iphones/1287515#1287515 Comment by Rhythmic Fistman on Do I have to support jailbroken iPhones? Rhythmic Fistman 2009-08-17T12:58:02Z 2009-08-17T12:58:02Z Thanks for the considered answer. Developers can't even &quot;use&quot; a JB handset? What's the clause no.? What constitutes use? Can we touch one? What if we didn't know it was JB-ed at the time? Anyway, technically we shouldn't have to support non-standard handsets, but the reality is different.