Advertise Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Your First iPhone App
($1.99)

iPhone Code Generator
($9.99)

Infinote Pinboard
for Todos and Notes
(free)

picplz
(free)

poG
($2.99)

VintageChart+
by Wine Spectator
(free)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Tools & Utilities

Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2009, 02:09 AM   #26 (permalink)
zim
Registered Member
 
Join Date: Jun 2009
Posts: 13
Default

Code:
#!/bin/bash
cd /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneOS\ Build\ System\ Support.xcplugin/Contents/MacOS/

dd if=iPhoneOS\ Build\ System\ Support of=working bs=500 count=255
printf "\x8f\x2a\x00\x00" >> working
dd if=iPhoneOS\ Build\ System\ Support of=working bs=1 skip=127504 seek=127504
/bin/mv -n iPhoneOS\ Build\ System\ Support iPhoneOS\ Build\ System\ Support.original
/bin/mv working iPhoneOS\ Build\ System\ Support
chmod a+x iPhoneOS\ Build\ System\ Support
Just saying, is all, that fussing about with two dev tool sets is a whole lot of bother when there's two bytes between you and personal freedom.
zim is offline   Reply With Quote
Old 07-02-2009, 02:43 PM   #27 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
Default

Quote:
Originally Posted by zim View Post
Code:
#!/bin/bash
cd /Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Plug-ins/iPhoneOS\ Build\ System\ Support.xcplugin/Contents/MacOS/

dd if=iPhoneOS\ Build\ System\ Support of=working bs=500 count=255
printf "\x8f\x2a\x00\x00" >> working
dd if=iPhoneOS\ Build\ System\ Support of=working bs=1 skip=127504 seek=127504
/bin/mv -n iPhoneOS\ Build\ System\ Support iPhoneOS\ Build\ System\ Support.original
/bin/mv working iPhoneOS\ Build\ System\ Support
chmod a+x iPhoneOS\ Build\ System\ Support
Just saying, is all, that fussing about with two dev tool sets is a whole lot of bother when there's two bytes between you and personal freedom.
Is this the patch to apply to xcode 3.1.3 to do development for jailbreak iphone ? Is this the only difference between xcode 3.1.2 and 3.1.3 ?
If i run this commands, will i be able to compile iphone application without the provisioning problem that occurs in xcode 3.1.3 ?

Thank you
cberthe067 is offline   Reply With Quote
Old 07-02-2009, 06:12 PM   #28 (permalink)
zim
Registered Member
 
Join Date: Jun 2009
Posts: 13
Default

Quote:
Originally Posted by cberthe067 View Post
Is this the patch to apply to xcode 3.1.3 to do development for jailbreak iphone ? Is this the only difference between xcode 3.1.2 and 3.1.3 ?
If i run this commands, will i be able to compile iphone application without the provisioning problem that occurs in xcode 3.1.3 ?

Thank you
Yes, yes, yes*.

*works for me on a Core2 Duo, YMMV on other platforms, the patch alters the method table for the i386 image in a fat binary with ppc, ppc64, i386 and x86_64 images. Xcode seems to load only i386 on any Intel platform.
zim is offline   Reply With Quote
Old 07-03-2009, 06:27 AM   #29 (permalink)
Registered Member
 
Join Date: Jun 2009
Location: vienna
Posts: 31
Default

no, no, no.

sorry, but still get this:
Code Sign error: a valid provisioning profile matching the application's Identifier 'com.yourcompany.iPan' could not be found
blacksheep is offline   Reply With Quote
Old 07-03-2009, 08:05 AM   #30 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
Default

Quote:
Originally Posted by blacksheep View Post
no, no, no.

sorry, but still get this:
Code Sign error: a valid provisioning profile matching the application's Identifier 'com.yourcompany.iPan' could not be found
yes,yes,yes :-)

Ok now, i can confirm the patch of zim is working, i'm able to compile my code to create an executable ! Great ...

@zim, my next question is :

With older version of xcode (for 2.1 for exemple) i could deploy my application to the physical iPhone using xcode, with xcode 3.1.3, i can't do it anymore, giving an error as my iPhone is not configured to be provisioned ! Great, i can compile and produce executable but i can't deploy it using xcode. I know i can use openssh to copy executable package to iPhone and run ldid on it but it's a bit annoying ...
Did you manage to deploy to your iphone using xcode 3.1.3 interface, if so, how to configure the iphone to be provisioned ?

Thank for your valuable help zim, your patch is working !

Last edited by cberthe067; 07-03-2009 at 02:41 PM.
cberthe067 is offline   Reply With Quote
Old 07-03-2009, 02:25 PM   #31 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
Default

Ok, replying to myself ...

I found a way to deploy application to iphone, just use the iphone configuration utility found at Apple - Support - iPhone - Enterprise

Lauch it, Select Application on left panel and click on menu button Add, select the executable application situated in your project directory in build > Release-iphoneos and select the application package

Now, after adding the package, select your iPhone on the left panel and go to the application tab, find your application and click on install ! After that launch the application directly on your iphone, the icon should be on the dashboard !

It's working perfectly for me !

PS : Your iphone need to be connected to cable/cradle !

Last edited by cberthe067; 07-03-2009 at 02:40 PM.
cberthe067 is offline   Reply With Quote
Old 07-05-2009, 06:39 PM   #32 (permalink)
zim
Registered Member
 
Join Date: Jun 2009
Posts: 13
Default

Quote:
Originally Posted by blacksheep View Post
sorry, but still get this:
Code Sign error: a valid provisioning profile matching the application's Identifier 'com.yourcompany.iPan' could not be found
What's your CPU type and model?

Quote:
Originally Posted by cberthe067 View Post
Did you manage to deploy to your iphone using xcode 3.1.3 interface, if so, how to configure the iphone to be provisioned ?
The same way you did for 3.1.2. I used an installd patch.
zim is offline   Reply With Quote
Old 07-06-2009, 03:01 AM   #33 (permalink)
New Member
 
Join Date: Jun 2009
Posts: 5
Default

Quote:
I found a way to deploy application to iphone, just use the iphone configuration utility found at Apple - Support - iPhone - Enterprise

Lauch it, Select Application on left panel and click on menu button Add, select the executable application situated in your project directory in build > Release-iphoneos and select the application package

Now, after adding the package, select your iPhone on the left panel and go to the application tab, find your application and click on install ! After that launch the application directly on your iphone, the icon should be on the dashboard !

It's working perfectly for me !
Does it work with the last SDK without patching files with the previous one?
nerezus is offline   Reply With Quote
Old 07-06-2009, 09:58 AM   #34 (permalink)
New Member
 
Join Date: Feb 2009
Posts: 12
Default

Thanks for the tip, zim!

However, when I try to debug on device, I get the following:

Code:
[Session started at 2009-07-06 11:55:09 -0300.]
GNU gdb 6.3.50-20050815 (Apple version gdb-1119) (Thu May 14 05:35:37 UTC 2009)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "--host=i386-apple-darwin --target=arm-apple-darwin".Loading program into debugger…
No symbol table is loaded.  Use the "file" command.
No symbol table is loaded.  Use the "file" command.
tty /dev/ttys001
Pending breakpoint 1 - "-[NSException raise]" resolved
Pending breakpoint 2 - "-[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:]" resolved
Pending breakpoint 3 - "-[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:]" resolved
Pending breakpoint 14 - "szone_error" resolved
Pending breakpoint 15 - "objc_exception_throw" resolved
Program loaded.
target remote-mobile /tmp/.XcodeGDBRemote-2063-22
Switching to remote-macosx protocol
mem 0x1000 0x3fffffff cache
mem 0x40000000 0xffffffff none
mem 0x00000000 0x0fff none
(gdb) run
Running…
gdb stack trace at 'putpkt: write failed':
[ 0 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (remote_current_thread+0x63) [0x184cd3]
[ 1 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (remote_start_remote+0x9c) [0x184dd7]
[ 2 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (catch_exception+0x41) [0x7b49c]
[ 3 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (remote_macosx_complete_create_or_attach+0x5e) [0x185597]
[ 4 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (remote_macosx_create_inferior+0x49d) [0x185cb2]
[ 5 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (run_command_1+0x27c) [0x6714a]
[ 6 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (execute_command+0x2b6) [0x121ffe]
[ 7 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (mi_execute_async_cli_command+0xe2) [0x17b84]
[ 8 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (captured_mi_execute_command+0x14e) [0x18118]
[ 9 ] /Developer3.0/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (catch_exception+0x41) [0x7b49c]
recent remote packets prior to 'putpkt: write failed':
Sent:  [1246892118.540:36] +
Sent:  [1246892118.540:36] Hc-1
Recvd: [1246892118.545:36] OK
Sent:  [1246892118.545:36] qC
Recvd: [1246892118.554:36] QC0
Sent:  [1246892118.554:36] qStepPacketSupported
Recvd: [1246892118.559:36] OK
Sent:  [1246892118.624:46] QEnvironment:SHELL=/bin/bash
Recvd: [1246892118.638:46] OK
Sent:  [1246892118.638:46] QEnvironment:TMPDIR=/var/folders/zu/zu9pqz37G1KViwWWGrUbkk+++TM/-Tmp-/
Recvd: [1246892118.642:46] OK
Sent:  [1246892118.642:46] QEnvironment:Apple_PubSub_Socket_Render=/tmp/launch-yp9rk8/Render
Recvd: [1246892118.646:46] OK
Sent:  [1246892118.646:46] QEnvironment:USER=nameghino
Recvd: [1246892118.650:46] OK
Sent:  [1246892118.650:46] QEnvironment:COMMAND_MODE=unix2003
Recvd: [1246892118.654:46] OK
Sent:  [1246892118.654:46] QEnvironment:SSH_AUTH_SOCK=/tmp/launch-TaYTV5/Listeners
Recvd: [1246892118.658:46] OK
Sent:  [1246892118.658:46] QEnvironment:__CF_USER_TEXT_ENCODING=0x1F6:0:8
Recvd: [1246892118.662:46] OK
Sent:  [1246892118.662:46] QEnvironment:com.adobe.versioncue.client.applocale=es_ES
Recvd: [1246892118.666:46] OK
Sent:  [1246892118.666:46] QEnvironment:PATH=/Developer3.0/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin
Recvd: [1246892118.670:46] OK
Sent:  [1246892118.670:46] QEnvironment:PWD=/Users/nameghino/src/DataChartTestApp/build/Debug-iphoneos
Recvd: [1246892118.675:46] OK
Sent:  [1246892118.675:46] QEnvironment:SSH_ASKPASS=/Developer3.0/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/Xcode SSHPassKey
Recvd: [1246892118.679:46] OK
Sent:  [1246892118.679:46] QEnvironment:SHLVL=0
Recvd: [1246892118.683:46] OK
Sent:  [1246892118.683:46] QEnvironment:HOME=/Users/nameghino
Recvd: [1246892118.687:46] OK
Sent:  [1246892118.687:46] QEnvironment:LOGNAME=nameghino
Recvd: [1246892118.691:46] OK
Sent:  [1246892118.691:46] QEnvironment:com.adobe.versioncue.client.appname=AdobeDrive
Recvd: [1246892118.695:46] OK
Sent:  [1246892118.695:46] QEnvironment:DISPLAY=/tmp/launch-0PdHAx/:0
Recvd: [1246892118.699:46] OK
Sent:  [1246892118.699:46] QEnvironment:com.adobe.versioncue.client.appversion=1.0.0
Recvd: [1246892118.703:46] OK
Sent:  [1246892118.703:46] QEnvironment:SECURITYSESSIONID=bb3250
Recvd: [1246892118.707:46] OK
Sent:  [1246892118.707:46] QEnvironment:LINES=24
Recvd: [1246892118.711:46] OK
Sent:  [1246892118.711:46] QEnvironment:COLUMNS=80
Recvd: [1246892118.715:46] OK
Sent:  [1246892118.715:46] QEnvironment:MallocHelp=YES
Recvd: [1246892118.719:46] OK
Sent:  [1246892118.719:46] QEnvironment:NSZombieEnabled=YES
Recvd: [1246892118.723:46] OK
Sent:  [1246892118.723:46] QEnvironment:NSDebugEnabled=YES
Recvd: [1246892118.727:46] OK
Sent:  [1246892118.727:46] QEnvironment:MallocStackLogging=YES
Recvd: [1246892118.731:46] OK
Sent:  [1246892118.731:46] QEnvironment:MallocStackLoggingNoCompact=YES
Recvd: [1246892118.736:46] OK
Sent:  [1246892118.736:46] QEnvironment:NSDeallocateZombies=NO
Recvd: [1246892118.740:46] OK
Sent:  [1246892118.740:46] QEnvironment:MallocCheckHeapEach=100000
Recvd: [1246892118.744:46] OK
Sent:  [1246892118.744:46] QEnvironment:MallocCheckHeapStart=100000
Recvd: [1246892118.748:46] OK
Sent:  [1246892118.748:46] QEnvironment:MallocScribble=YES
Recvd: [1246892118.752:46] OK
Sent:  [1246892118.752:46] QEnvironment:MallocGuardEdges=YES
Recvd: [1246892118.756:46] OK
Sent:  [1246892118.756:46] QEnvironment:MallocCheckHeapAbort=1
Recvd: [1246892118.760:46] OK
Sent:  [1246892118.760:46] QEnvironment:CFZombie=5
Recvd: [1246892118.764:46] OK
Sent:  [1246892118.764:46] QEnvironment:USERBREAK=1
Recvd: [1246892118.769:46] OK
Sent:  [1246892118.769:46] QEnvironment:DYLD_FRAMEWORK_PATH=/Users/nameghino/src/DataChartTestApp/build/Debug-iphoneos
Recvd: [1246892118.773:46] OK
Sent:  [1246892118.773:46] QEnvironment:DYLD_LIBRARY_PATH=/Users/nameghino/src/DataChartTestApp/build/Debug-iphoneos
Recvd: [1246892118.777:46] OK
Sent:  [1246892118.777:46] QEnvironment:DYLD_NO_FIX_PREBINDING=YES
Recvd: [1246892118.781:46] OK
Sent:  [1246892118.781:46] QEnvironment:DYLD_NEW_LOCAL_SHARED_REGIONS=YES
Recvd: [1246892118.785:46] OK
Sent:  [1246892118.785:46] QEnvironment:NSUnbufferedIO=YES
Recvd: [1246892118.789:46] OK
Sent:  [1246892118.789:46] A214,0,2f707269766174652f7661722f6d6f62696c652f4170706c69636174696f6e732f37393545364533352d313641342d343635422d414642422d3333384335363031393135452f446174614368617274546573744170702e6170702f44617461436861727454657374417070
Recvd: [1246892118.793:46] OK
putpkt: write failed: Broken pipe
putpkt: write failed: Broken pipe
Sent:  [1246892118.793:46] qLaunchSuccess
Recvd: [1246892119.552:46] OK
Sent:  [1246892119.552:46] +
Sent:  [1246892119.552:46] qC
Sent:  [1246892121.552:46] qC
Any ideas on what it might be?
Thanks!
nico is offline   Reply With Quote
Old 07-06-2009, 11:19 PM   #35 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
Default

Quote:
Originally Posted by zim View Post
What's your CPU type and model?



The same way you did for 3.1.2. I used an installd patch.
My iPhone is jailbreak but i always obtain the following error when debugging :

No provisioned iPhone OS device is connected.

Is "installd" is a patch for iPhone available on cydia ? Ok i checked AppSync is installed (MobileInstallation replacement for 3.0) but it doesn't solve the debug problem !

An idea to solve the problem ?

Last edited by cberthe067; 07-06-2009 at 11:24 PM.
cberthe067 is offline   Reply With Quote
Old 07-07-2009, 01:43 AM   #36 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
Default

Quote:
Originally Posted by cberthe067 View Post
My iPhone is jailbreak but i always obtain the following error when debugging :

No provisioned iPhone OS device is connected.

Is "installd" is a patch for iPhone available on cydia ? Ok i checked AppSync is installed (MobileInstallation replacement for 3.0) but it doesn't solve the debug problem !

An idea to solve the problem ?
Ok, i installed installd for 3.0, but that doesn't solve my problem ! I do not understand what is missing ... i always get the same error "No provisioned iPhone OS device is connected"

I finally found why it was not working, if forget to use my iphone as development device in Organizer ... Now, it's working !

Last edited by cberthe067; 07-07-2009 at 02:00 AM.
cberthe067 is offline   Reply With Quote
Old 07-07-2009, 11:57 PM   #37 (permalink)
zim
Registered Member
 
Join Date: Jun 2009
Posts: 13
Default

Quote:
Originally Posted by nico View Post
Thanks for the tip, zim!

However, when I try to debug on device, I get the following:

Code:
...
Any ideas on what it might be?
Thanks!
No idea, sorry. Lack of support is the price you pay for not paying the price :-)

cberthe067, installd is where the magic of MobileInstallation happens on the 3.0 platform. AppSync patches installd. Anything claiming to patch MobileInstallation on 3.0 will really be patching installd.

nerezus, the script is for Xcode 3.1.3 (iPhoneOS 3.0) only. You do not need any other version of Xcode installed. You should not attempt to use the script with any other version of Xcode. You should alter the script appropriately if you did not install Xcode 3.1.3 in the default location.
zim is offline   Reply With Quote
Old 07-09-2009, 08:51 PM   #38 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 2
Default

I'm able to deploy the app to my jb 3.0 3G phone with Xcode 313 with this trick, and debugger tries to connect but it doesn't seem to halt at any breakpoints.
runrun is offline   Reply With Quote
Old 07-09-2009, 09:10 PM   #39 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 2
Default

This is what I get when I debug, when I run with simulator I get breakpoints but not with the device :< But it runs at least.

Code:
[Session started at 2009-07-09 22:00:58 -0400.]
GNU gdb 6.3.50-20050815 (Apple version gdb-1119) (Thu May 14 05:35:37 UTC 2009)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "--host=i386-apple-darwin --target=arm-apple-darwin".tty /dev/ttys001
Loading program into debugger…
sharedlibrary apply-load-rules all
Program loaded.
target remote-mobile /tmp/.XcodeGDBRemote-40001-34
Switching to remote-macosx protocol
mem 0x1000 0x3fffffff cache
mem 0x40000000 0xffffffff none
mem 0x00000000 0x0fff none
run
Running…
Ignoring packet error, continuing...
Ignoring packet error, continuing...
Ignoring packet error, continuing...
gdb stack trace around reply contains invalid hex digit:
[ 0 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (hex2bin+0x2c) [0x17f907]
[ 1 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (remote_read_bytes+0x1f7) [0x182e97]
[ 2 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (default_xfer_partial+0x125) [0x98ec2]
[ 3 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (target_xfer_partial+0x2fb) [0x9ae3b]
[ 4 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (target_read+0x81) [0x9cbe3]
[ 5 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (dcache_peek_byte+0x15e) [0x1877a7]
[ 6 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (dcache_xfer_memory+0x58) [0x1874b2]
[ 7 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (target_xfer_partial+0x1e4) [0x9ad24]
[ 8 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (target_read+0x81) [0x9cbe3]
[ 9 ] /Developer/Platforms/iPhoneOS.platform/Developer/usr/libexec/gdb/gdb-arm-apple-darwin (target_read_memory+0x58) [0x9cdf2]
recent remote packet log at point of error:
Sent:  [1247191269.093:125] +
Sent:  [1247191269.093:125] Hc-1
Recvd: [1247191269.098:125] OK
Sent:  [1247191269.098:125] qC
Recvd: [1247191269.104:125] QC0
Sent:  [1247191269.104:125] qStepPacketSupported
Recvd: [1247191269.109:125] OK
Sent:  [1247191269.124:136] QEnvironment:SHELL=/bin/bash
Recvd: [1247191269.130:136] OK
Sent:  [1247191269.130:136] QEnvironment:TMPDIR=/var/folders/kj/kjNxTc+nFcOew0jzZPpIB++++TI/-Tmp-/
Recvd: [1247191269.134:136] OK
Sent:  [1247191269.134:136] QEnvironment:Apple_PubSub_Socket_Render=/tmp/launch-PenbuZ/Render
Recvd: [1247191269.139:136] OK
Sent:  [1247191269.139:136] QEnvironment:USER=editedout
Recvd: [1247191269.143:136] OK
Sent:  [1247191269.143:136] QEnvironment:COMMAND_MODE=unix2003
Recvd: [1247191269.147:136] OK
Sent:  [1247191269.147:136] QEnvironment:SSH_AUTH_SOCK=/tmp/launch-wPfPdF/Listeners
Recvd: [1247191269.151:136] OK
Sent:  [1247191269.151:136] QEnvironment:__CF_USER_TEXT_ENCODING=0x1F5:0:0
Recvd: [1247191269.154:136] OK
Sent:  [1247191269.154:136] QEnvironment:PATH=/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin
Recvd: [1247191269.158:136] OK
Sent:  [1247191269.158:136] QEnvironment:PWD=/Users/editedout/Documents/iPhone-Dev/TabSample2b/build/Debug-iphoneos
Recvd: [1247191269.162:136] OK
Sent:  [1247191269.162:136] QEnvironment:SSH_ASKPASS=/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/Xcode SSHPassKey
Recvd: [1247191269.166:136] OK
Sent:  [1247191269.166:136] QEnvironment:SHLVL=0
Recvd: [1247191269.171:136] OK
Sent:  [1247191269.171:136] QEnvironment:HOME=/Users/editedout
Recvd: [1247191269.175:136] OK
Sent:  [1247191269.175:136] QEnvironment:LOGNAME=editedout
Recvd: [1247191269.180:136] OK
Sent:  [1247191269.180:136] QEnvironment:DISPLAY=/tmp/launch-AuK5sP/:0
Recvd: [1247191269.184:136] OK
Sent:  [1247191269.184:136] QEnvironment:SECURITYSESSIONID=990fe0
Recvd: [1247191269.189:136] OK
Sent:  [1247191269.189:136] QEnvironment:LINES=24
Recvd: [1247191269.193:136] OK
Sent:  [1247191269.193:136] QEnvironment:COLUMNS=80
Recvd: [1247191269.197:136] OK
Sent:  [1247191269.197:136] QEnvironment:USERBREAK=1
Recvd: [1247191269.210:136] OK
Sent:  [1247191269.210:136] QEnvironment:DYLD_FRAMEWORK_PATH=/Users/editedout/Documents/iPhone-Dev/TabSample2b/build/Debug-iphoneos
Recvd: [1247191269.214:136] OK
Sent:  [1247191269.214:136] QEnvironment:DYLD_LIBRARY_PATH=/Users/editedout/Documents/iPhone-Dev/TabSample2b/build/Debug-iphoneos
Recvd: [1247191269.218:136] OK
Sent:  [1247191269.218:136] QEnvironment:DYLD_NO_FIX_PREBINDING=YES
Recvd: [1247191269.222:136] OK
Sent:  [1247191269.222:136] QEnvironment:DYLD_NEW_LOCAL_SHARED_REGIONS=YES
Recvd: [1247191269.226:136] OK
Sent:  [1247191269.226:136] QEnvironment:NSUnbufferedIO=YES
Recvd: [1247191269.230:136] OK
Sent:  [1247191269.230:136] A194,0,2f707269766174652f7661722f6d6f62696c652f4170706c69636174696f6e732f30383838423046372d463241462d344131312d413341372d3337343934463842324136412f54616253616d706c6532622e6170702f54616253616d706c653262
Recvd: [1247191269.235:136] OK
Sent:  [1247191269.235:136] qLaunchSuccess
Recvd: [1247191270.012:136] OK
Sent:  [1247191270.012:136] +
Sent:  [1247191270.012:136] qC
Sent:  [1247191272.013:136] qC
Sent:  [1247191274.013:136] qC
Sent:  [1247191276.013:136] qC
Sent:  [1247191284.014:136] qShlibInfoAddr
Sent:  [1247191286.014:136] qShlibInfoAddr
Sent:  [1247191288.015:136] qShlibInfoAddr
Reply contains invalid hex digit 116
Reply contains invalid hex digit 116
Sent:  [1247191290.020:136] qShlibInfoAddr
Sent:  [1247191298.255:136] m2fe00000,40
Sent:  [1247191300.255:136] m2fe00000,40
Sent:  [1247191302.255:136] m2fe00000,40
Sent:  [1247191304.256:136] m2fe00000,40
runrun is offline   Reply With Quote
Old 07-10-2009, 02:52 AM   #40 (permalink)
Registered Member
 
Join Date: Apr 2009
Posts: 39
Default

>Lauch it, Select Application on left panel and click on menu button Add, >select the executable application situated in your project directory in build > >Release-iphoneos and select the application package
>Now, after adding the package, select your iPhone on the left panel and go to >the application tab, find your application and click on install ! After that >launch the application directly on your iphone, the icon should be on the >dashboard !
>It's working perfectly for me !

Hi cberthe067,

The above one works for me as you said upto making the build for Device 3.0 - Release. But when i try to install my App using iPhone Config Utility it says 'This provisioning profile does not have a valid singnature(it has a valid but untrusted signature.)

May i know how did you install without observing this on your 3.0 device?
Appreciate if you could help on this quickly.

Martin/
Martin_8177 is offline   Reply With Quote
Old 07-10-2009, 01:16 PM   #41 (permalink)
New Member
 
Join Date: Feb 2009
Posts: 12
Default

Quote:
Originally Posted by zim View Post
No idea, sorry. Lack of support is the price you pay for not paying the price :-)
I'd gladly pay the price if I could, the developer program isn't available in Argentina and can't get into =(

Thanks for the tip anyway!
nico is offline   Reply With Quote
Old 07-12-2009, 02:08 PM   #42 (permalink)
Registered Member
 
Join Date: Apr 2009
Posts: 39
Default

Hi,

I’m looking for the one as all needed, please give me the exact clear steps(if anyone successfully done it..!) to know how we can transfer our '3.0' build .app into '3.0' iPhone without doing downgrade of Xcode etc and transfer that with Xcode 3.1.3 itself?

Need help urgently to test my app.

Thanks and appreciate your helps.
Martin_8177 is offline   Reply With Quote
Old 07-14-2009, 12:45 PM   #43 (permalink)
Registered Member
 
Join Date: Jun 2009
Location: currently AZ
Posts: 112
Send a message via MSN to kingbombs
Default

Quote:
Originally Posted by ingrid View Post
It was possible to skip provisioning to use Xcode's Build & Go with SDK <= 2.2.1 on a jailbroken device without having to pay the 99$ fee. A self-signed certificate and some other minor modifications did the trick (you know what I'm talking about).
How do you do that?
Is there a guide or tutorial anywhere?
kingbombs is offline   Reply With Quote
Old 07-15-2009, 03:58 AM   #44 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 3
Default

I'm getting the same issues with being unable to debug on the device, with the same error messages others have reported (Ignoring packet error, continuing...)

Anyone found a fix for this?
Wardio is offline   Reply With Quote
Old 07-15-2009, 05:02 AM   #45 (permalink)
Registered Member
 
Join Date: Apr 2009
Posts: 39
Default

There is great article already available on this..

Developing for a jailbroken iPhone, A to Z (iPhone 3.0) | alexwhittemore.com

I followed the same steps and installed my test app on my 3.0 iPhone 2G device successfully.

Martin/
Martin_8177 is offline   Reply With Quote
Old 07-15-2009, 05:08 AM   #46 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 3
Default

this is the guide i followed to get my app to be signed and installed on my ipod, however my issue is not being able to debug, unless you did manage to get debugging working?
Wardio is offline   Reply With Quote
Old 07-15-2009, 12:03 PM   #47 (permalink)
Registered Member
 
Join Date: Apr 2009
Posts: 39
Default

Quote:
Originally Posted by Wardio View Post
this is the guide i followed to get my app to be signed and installed on my ipod, however my issue is not being able to debug, unless you did manage to get debugging working?
I used iPhone 3.0 2G and succeeded, not tried with iPod or 3G devices yet. There was no other technique i tried apart from following the same steps.
Martin_8177 is offline   Reply With Quote
Old 07-15-2009, 10:57 PM   #48 (permalink)
zim
Registered Member
 
Join Date: Jun 2009
Posts: 13
Default

I can build, go, and stop at breakpoints just fine. My project includes a script phase to codesign the binary with entitlements that include get-task-allow, perhaps that is the missing ingredient?
zim is offline   Reply With Quote
Old 07-17-2009, 08:07 AM   #49 (permalink)
Registered Member
 
Join Date: Jul 2009
Posts: 3
Default

Cheers for the script zim.

When I run it however I get the following output in terminal:

Code:
richmac-2:Desktop rich$ ./script
0+0 records in
0+0 records out
0 bytes transferred in 0.000019 secs (0 bytes/sec)
Any idea as to why this might be happening?

Last edited by richardjkeys; 07-17-2009 at 08:10 AM.
richardjkeys is offline   Reply With Quote
Old 07-17-2009, 08:39 AM   #50 (permalink)
Registered Member
 
Join Date: Jul 2009
Posts: 3
Default

Rather than run zim's code as a script, copying and pasting it into the terminal seems to work for me!

Excellent!
richardjkeys is offline   Reply With Quote
Reply

Bookmarks

Tags
3.0, jailbreak, provisioning, sdk, xcode

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


» Advertisements
» Stats
Members: 52,414
Threads: 53,155
Posts: 226,638
Top Poster: BrianSlick (3,598)
Welcome to our newest member, topDeals2000
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 07:32 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0